mshtml: Removed no longer used attr_name from event_info_t.
[wine.git] / dlls / dpnet / threadpool.c
blob37a05e23841644a45e9a1d7fd6791d892a42ecb9
1 /*
2 * DirectPlay8 ThreadPool
4 * Copyright 2004 Raphael Junqueira
5 * Copyright 2008 Alexander N. Sørnes <alex@thehandofagony.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
25 #include <stdarg.h>
27 #define COBJMACROS
28 #include "windef.h"
29 #include "winbase.h"
30 #include "wingdi.h"
31 #include "winuser.h"
32 #include "objbase.h"
33 #include "wine/debug.h"
35 #include "dpnet_private.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(dpnet);
39 static inline IDirectPlay8ThreadPoolImpl *impl_from_IDirectPlay8ThreadPool(IDirectPlay8ThreadPool *iface)
41 return CONTAINING_RECORD(iface, IDirectPlay8ThreadPoolImpl, IDirectPlay8ThreadPool_iface);
44 /* IUnknown interface follows */
45 static HRESULT WINAPI IDirectPlay8ThreadPoolImpl_QueryInterface(IDirectPlay8ThreadPool *iface,
46 REFIID riid, void **ppobj)
48 IDirectPlay8ThreadPoolImpl *This = impl_from_IDirectPlay8ThreadPool(iface);
50 if(IsEqualGUID(riid, &IID_IUnknown) ||
51 IsEqualGUID(riid, &IID_IDirectPlay8ThreadPool))
53 IUnknown_AddRef(iface);
54 *ppobj = This;
55 return DPN_OK;
58 WARN("(%p)->(%s,%p): not found\n", This, debugstr_guid(riid), ppobj);
59 return E_NOINTERFACE;
62 static ULONG WINAPI IDirectPlay8ThreadPoolImpl_AddRef(IDirectPlay8ThreadPool *iface)
64 IDirectPlay8ThreadPoolImpl* This = impl_from_IDirectPlay8ThreadPool(iface);
65 ULONG RefCount = InterlockedIncrement(&This->ref);
67 return RefCount;
70 static ULONG WINAPI IDirectPlay8ThreadPoolImpl_Release(IDirectPlay8ThreadPool *iface)
72 IDirectPlay8ThreadPoolImpl* This = impl_from_IDirectPlay8ThreadPool(iface);
73 ULONG RefCount = InterlockedDecrement(&This->ref);
75 if(!RefCount)
76 HeapFree(GetProcessHeap(), 0, This);
78 return RefCount;
81 /* IDirectPlay8ThreadPool interface follows */
82 static HRESULT WINAPI IDirectPlay8ThreadPoolImpl_Initialize(IDirectPlay8ThreadPool *iface,
83 void * const pvUserContext, const PFNDPNMESSAGEHANDLER pfn, const DWORD dwFlags)
85 IDirectPlay8ThreadPoolImpl *This = impl_from_IDirectPlay8ThreadPool(iface);
87 TRACE("(%p)->(%p,%p,%x)\n", This, pvUserContext, pfn, dwFlags);
89 if(!pfn)
90 return DPNERR_INVALIDPARAM;
92 if(This->msghandler)
93 return DPNERR_ALREADYINITIALIZED;
95 This->msghandler = pfn;
96 This->flags = dwFlags;
97 This->usercontext = pvUserContext;
99 return DPN_OK;
102 static HRESULT WINAPI IDirectPlay8ThreadPoolImpl_Close(IDirectPlay8ThreadPool *iface,
103 const DWORD dwFlags)
105 IDirectPlay8ThreadPoolImpl *This = impl_from_IDirectPlay8ThreadPool(iface);
107 FIXME("(%p)->(%x)\n", This, dwFlags);
109 This->msghandler = NULL;
111 return DPN_OK;
114 static HRESULT WINAPI IDirectPlay8ThreadPoolImpl_GetThreadCount(IDirectPlay8ThreadPool *iface,
115 const DWORD dwProcessorNum, DWORD * const pdwNumThreads, const DWORD dwFlags)
117 FIXME("(%p)->(%x,%p,%x): stub\n", iface, dwProcessorNum, pdwNumThreads, dwFlags);
118 *pdwNumThreads = 0;
119 return DPN_OK;
122 static HRESULT WINAPI IDirectPlay8ThreadPoolImpl_SetThreadCount(IDirectPlay8ThreadPool *iface,
123 const DWORD dwProcessorNum, const DWORD dwNumThreads, const DWORD dwFlags)
125 FIXME("(%p)->(%x,%x,%x): stub\n", iface, dwProcessorNum, dwNumThreads, dwFlags);
126 return DPN_OK;
129 static HRESULT WINAPI IDirectPlay8ThreadPoolImpl_DoWork(IDirectPlay8ThreadPool *iface,
130 const DWORD dwAllowedTimeSlice, const DWORD dwFlags)
132 static BOOL Run = FALSE;
134 if(!Run)
135 FIXME("(%p)->(%x,%x): stub\n", iface, dwAllowedTimeSlice, dwFlags);
137 Run = TRUE;
139 return DPN_OK;
142 static const IDirectPlay8ThreadPoolVtbl DirectPlay8ThreadPool_Vtbl =
144 IDirectPlay8ThreadPoolImpl_QueryInterface,
145 IDirectPlay8ThreadPoolImpl_AddRef,
146 IDirectPlay8ThreadPoolImpl_Release,
147 IDirectPlay8ThreadPoolImpl_Initialize,
148 IDirectPlay8ThreadPoolImpl_Close,
149 IDirectPlay8ThreadPoolImpl_GetThreadCount,
150 IDirectPlay8ThreadPoolImpl_SetThreadCount,
151 IDirectPlay8ThreadPoolImpl_DoWork
154 HRESULT DPNET_CreateDirectPlay8ThreadPool(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj)
156 IDirectPlay8ThreadPoolImpl* Client;
158 Client = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectPlay8ThreadPoolImpl));
160 if(Client == NULL)
162 *ppobj = NULL;
163 WARN("Not enough memory\n");
164 return E_OUTOFMEMORY;
167 Client->IDirectPlay8ThreadPool_iface.lpVtbl = &DirectPlay8ThreadPool_Vtbl;
168 Client->ref = 0;
170 return IDirectPlay8ThreadPoolImpl_QueryInterface(&Client->IDirectPlay8ThreadPool_iface, riid,
171 ppobj);