msvcrt/tests: Add _strupr tests.
[wine.git] / dlls / browseui / compcatcachedaemon.c
blob1f6244172728f5a0cbd787aa078d902ffac19316
1 /*
2 * Component Category Cache 'Daemon'
4 * Copyright (C) 2008 Maarten Lankhorst
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
23 #include <stdarg.h>
25 #define COBJMACROS
27 #include "wine/debug.h"
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winreg.h"
31 #include "winuser.h"
32 #include "shlwapi.h"
33 #include "winerror.h"
34 #include "objbase.h"
36 #include "shlguid.h"
37 #include "shlobj.h"
39 #include "wine/heap.h"
40 #include "wine/unicode.h"
42 #include "browseui.h"
43 #include "resids.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(browseui);
47 typedef struct tagCCCD {
48 IRunnableTask IRunnableTask_iface;
49 LONG refCount;
50 CRITICAL_SECTION cs;
51 } CompCatCacheDaemon;
53 static inline CompCatCacheDaemon *impl_from_IRunnableTask(IRunnableTask *iface)
55 return CONTAINING_RECORD(iface, CompCatCacheDaemon, IRunnableTask_iface);
58 static void CompCatCacheDaemon_Destructor(CompCatCacheDaemon *This)
60 TRACE("destroying %p\n", This);
61 This->cs.DebugInfo->Spare[0] = 0;
62 DeleteCriticalSection(&This->cs);
63 heap_free(This);
64 InterlockedDecrement(&BROWSEUI_refCount);
67 static HRESULT WINAPI CompCatCacheDaemon_QueryInterface(IRunnableTask *iface, REFIID iid, LPVOID *ppvOut)
69 CompCatCacheDaemon *This = impl_from_IRunnableTask(iface);
70 *ppvOut = NULL;
72 if (IsEqualIID(iid, &IID_IRunnableTask) || IsEqualIID(iid, &IID_IUnknown))
74 *ppvOut = &This->IRunnableTask_iface;
77 if (*ppvOut)
79 IRunnableTask_AddRef(iface);
80 return S_OK;
83 FIXME("unsupported interface: %s\n", debugstr_guid(iid));
84 return E_NOINTERFACE;
87 static ULONG WINAPI CompCatCacheDaemon_AddRef(IRunnableTask *iface)
89 CompCatCacheDaemon *This = impl_from_IRunnableTask(iface);
90 return InterlockedIncrement(&This->refCount);
93 static ULONG WINAPI CompCatCacheDaemon_Release(IRunnableTask *iface)
95 CompCatCacheDaemon *This = impl_from_IRunnableTask(iface);
96 ULONG ret;
98 ret = InterlockedDecrement(&This->refCount);
99 if (ret == 0)
100 CompCatCacheDaemon_Destructor(This);
101 return ret;
104 static HRESULT WINAPI CompCatCacheDaemon_Run(IRunnableTask *iface)
106 FIXME("stub\n");
107 return S_OK;
110 static HRESULT WINAPI CompCatCacheDaemon_Kill(IRunnableTask *iface, BOOL fWait)
112 FIXME("stub\n");
113 return S_OK;
116 static HRESULT WINAPI CompCatCacheDaemon_Suspend(IRunnableTask *iface)
118 FIXME("stub\n");
119 return S_OK;
122 static HRESULT WINAPI CompCatCacheDaemon_Resume(IRunnableTask *iface)
124 FIXME("stub\n");
125 return S_OK;
128 static ULONG WINAPI CompCatCacheDaemon_IsRunning(IRunnableTask *iface)
130 FIXME("stub\n");
131 return 0;
134 static const IRunnableTaskVtbl CompCatCacheDaemonVtbl =
136 CompCatCacheDaemon_QueryInterface,
137 CompCatCacheDaemon_AddRef,
138 CompCatCacheDaemon_Release,
139 CompCatCacheDaemon_Run,
140 CompCatCacheDaemon_Kill,
141 CompCatCacheDaemon_Suspend,
142 CompCatCacheDaemon_Resume,
143 CompCatCacheDaemon_IsRunning
146 HRESULT CompCatCacheDaemon_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
148 CompCatCacheDaemon *This;
149 if (pUnkOuter)
150 return CLASS_E_NOAGGREGATION;
152 This = heap_alloc(sizeof(CompCatCacheDaemon));
153 if (This == NULL)
154 return E_OUTOFMEMORY;
156 This->IRunnableTask_iface.lpVtbl = &CompCatCacheDaemonVtbl;
157 This->refCount = 1;
158 InitializeCriticalSection(&This->cs);
159 This->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": CompCatCacheDaemon.cs");
161 TRACE("returning %p\n", This);
162 *ppOut = (IUnknown *)&This->IRunnableTask_iface;
163 InterlockedIncrement(&BROWSEUI_refCount);
164 return S_OK;