ReactOS 0.4.15-dev-7961-gdcf9eb0
atl30.c
Go to the documentation of this file.
1/*
2 * Implementation of Active Template Library (atl.dll)
3 *
4 * Copyright 2004 Aric Stewart for CodeWeavers
5 * Copyright 2005 Jacek Caban
6 *
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.
11 *
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.
16 *
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
20 */
21
22#include <stdio.h>
23
24#define COBJMACROS
25
26#include "objidl.h"
27#include "rpcproxy.h"
28#include "wine/atlbase.h"
29#include "wine/atlwin.h"
30
31#include "wine/debug.h"
32
34
36
37#define ATLVer1Size FIELD_OFFSET(_ATL_MODULEW, dwAtlBuildVer)
38
40{
41 INT i;
42 UINT size;
43
44 TRACE("(%p %p %p)\n", pM, p, h);
45
46 size = pM->cbSize;
47 switch (size)
48 {
49 case ATLVer1Size:
50 case sizeof(_ATL_MODULEW):
51#ifdef _WIN64
52 case sizeof(_ATL_MODULEW) + sizeof(void *):
53#endif
54 break;
55 default:
56 WARN("Unknown structure version (size %i)\n",size);
57 return E_INVALIDARG;
58 }
59
60 memset(pM,0,pM->cbSize);
61 pM->cbSize = size;
62 pM->m_hInst = h;
63 pM->m_hInstResource = h;
64 pM->m_hInstTypeLib = h;
65 pM->m_pObjMap = p;
66 pM->m_hHeap = GetProcessHeap();
67
71
72 /* call mains */
73 i = 0;
74 if (pM->m_pObjMap != NULL && size > ATLVer1Size)
75 {
76 while (pM->m_pObjMap[i].pclsid != NULL)
77 {
78 TRACE("Initializing object %i %p\n",i,p[i].pfnObjectMain);
79 if (p[i].pfnObjectMain)
80 p[i].pfnObjectMain(TRUE);
81 i++;
82 }
83 }
84
85 return S_OK;
86}
87
89{
91
92 if (mod->cbSize == ATLVer1Size)
93 ret = (_ATL_OBJMAP_ENTRYW_V1 *)mod->m_pObjMap + index;
94 else
95 ret = (_ATL_OBJMAP_ENTRYW_V1 *)(mod->m_pObjMap + index);
96
97 if (!ret->pclsid) ret = NULL;
98 return ret;
99}
100
102 BSTR *pbstrPath, ITypeLib **ppTypeLib)
103{
104 TRACE("(%p, %s, %p, %p)\n", pM, debugstr_w(lpszIndex), pbstrPath, ppTypeLib);
105
106 if (!pM)
107 return E_INVALIDARG;
108
109 return AtlLoadTypeLib(pM->m_hInstTypeLib, lpszIndex, pbstrPath, ppTypeLib);
110}
111
113{
114 _ATL_TERMFUNC_ELEM *iter, *tmp;
115
116 TRACE("(%p)\n", pM);
117
118 if (pM->cbSize > ATLVer1Size)
119 {
120 iter = pM->m_pTermFuncs;
121
122 while(iter) {
123 iter->pFunc(iter->dw);
124 tmp = iter;
125 iter = iter->pNext;
126 HeapFree(GetProcessHeap(), 0, tmp);
127 }
128 }
129
130 return S_OK;
131}
132
135{
137 int i=0;
138
139 TRACE("(%p %i %i)\n",pM, dwClsContext, dwFlags);
140
141 if (pM == NULL)
142 return E_INVALIDARG;
143
144 while ((obj = get_objmap_entry( pM, i++ )))
145 {
147 HRESULT rc;
148
149 TRACE("Registering object %i\n",i);
150 if (obj->pfnGetClassObject)
151 {
152 rc = obj->pfnGetClassObject(obj->pfnCreateInstance, &IID_IUnknown,
153 (LPVOID*)&pUnknown);
154 if (SUCCEEDED (rc) )
155 {
156 rc = CoRegisterClassObject(obj->pclsid, pUnknown, dwClsContext,
157 dwFlags, &obj->dwRegister);
158
159 if (FAILED (rc) )
160 WARN("Failed to register object %i: 0x%08x\n", i, rc);
161
162 if (pUnknown)
163 IUnknown_Release(pUnknown);
164 }
165 }
166 }
167
168 return S_OK;
169}
170
172{
173 FIXME("(%p, %i, %p) stub\n", pM, bUnRegTypeLib, pCLSID);
174 return S_OK;
175}
176
177/***********************************************************************
178 * AtlModuleRegisterServer [ATL.@]
179 *
180 */
182{
184 int i;
185 HRESULT hRes;
186
187 TRACE("%p %d %s\n", pM, bRegTypeLib, debugstr_guid(clsid));
188
189 if (pM == NULL)
190 return E_INVALIDARG;
191
192 for (i = 0; (obj = get_objmap_entry( pM, i )) != NULL; i++) /* register CLSIDs */
193 {
194 if (!clsid || IsEqualCLSID(obj->pclsid, clsid))
195 {
196 TRACE("Registering clsid %s\n", debugstr_guid(obj->pclsid));
197 hRes = obj->pfnUpdateRegistry(TRUE); /* register */
198 if (FAILED(hRes))
199 return hRes;
200
201 if(pM->cbSize > ATLVer1Size) {
202 const struct _ATL_CATMAP_ENTRY *catmap;
203
204 catmap = ((const _ATL_OBJMAP_ENTRYW*)obj)->pfnGetCategoryMap();
205 if(catmap) {
206 hRes = AtlRegisterClassCategoriesHelper(obj->pclsid, catmap, TRUE);
207 if(FAILED(hRes))
208 return hRes;
209 }
210 }
211 }
212 }
213
214 if (bRegTypeLib)
215 {
217 if (FAILED(hRes))
218 return hRes;
219 }
220
221 return S_OK;
222}
223
224/***********************************************************************
225 * AtlModuleGetClassObject [ATL.@]
226 */
229{
231 int i;
233
234 TRACE("%p %s %s %p\n", pm, debugstr_guid(rclsid), debugstr_guid(riid), ppv);
235
236 if (pm == NULL)
237 return E_INVALIDARG;
238
239 for (i = 0; (obj = get_objmap_entry( pm, i )) != NULL; i++)
240 {
241 if (IsEqualCLSID(obj->pclsid, rclsid))
242 {
243 TRACE("found object %i\n", i);
244 if (obj->pfnGetClassObject)
245 {
246 if (!obj->pCF)
247 hres = obj->pfnGetClassObject(obj->pfnCreateInstance,
249 (void **)&obj->pCF);
250 if (obj->pCF)
251 hres = IUnknown_QueryInterface(obj->pCF, riid, ppv);
252 break;
253 }
254 }
255 }
256
257 WARN("no class object found for %s\n", debugstr_guid(rclsid));
258
259 return hres;
260}
261
262/***********************************************************************
263 * AtlModuleGetClassObject [ATL.@]
264 */
266{
267 TRACE("%p %s\n", pm, debugstr_w(lpszIndex));
268
269 if (!pm)
270 return E_INVALIDARG;
271
272 return AtlRegisterTypeLib(pm->m_hInstTypeLib, lpszIndex);
273}
274
275/***********************************************************************
276 * AtlModuleRevokeClassObjects [ATL.@]
277 */
279{
280 FIXME("%p\n", pm);
281 return E_FAIL;
282}
283
284/***********************************************************************
285 * AtlModuleUnregisterServer [ATL.@]
286 */
288{
289 FIXME("%p %s\n", pm, debugstr_guid(clsid));
290 return E_FAIL;
291}
292
293/***********************************************************************
294 * AtlModuleRegisterWndClassInfoA [ATL.@]
295 *
296 * See AtlModuleRegisterWndClassInfoW.
297 */
299{
300 ATOM atom;
301
302 FIXME("%p %p %p semi-stub\n", pm, wci, pProc);
303
304 atom = wci->m_atom;
305 if (!atom)
306 {
307 WNDCLASSEXA wc;
308
309 TRACE("wci->m_wc.lpszClassName = %s\n", wci->m_wc.lpszClassName);
310
311 if (wci->m_lpszOrigName)
312 FIXME( "subclassing %s not implemented\n", debugstr_a(wci->m_lpszOrigName));
313
314 if (!wci->m_wc.lpszClassName)
315 {
316 sprintf(wci->m_szAutoName, "ATL:%p", wci);
317 TRACE("auto-generated class name %s\n", wci->m_szAutoName);
318 wci->m_wc.lpszClassName = wci->m_szAutoName;
319 }
320
321 atom = GetClassInfoExA(pm->m_hInst, wci->m_wc.lpszClassName, &wc);
322 if (!atom)
323 {
324 wci->m_wc.hInstance = pm->m_hInst;
325 wci->m_wc.hCursor = LoadCursorA( wci->m_bSystemCursor ? NULL : pm->m_hInst,
326 wci->m_lpszCursorID );
327 atom = RegisterClassExA(&wci->m_wc);
328 }
329 wci->pWndProc = wci->m_wc.lpfnWndProc;
330 wci->m_atom = atom;
331 }
332
333 if (wci->m_lpszOrigName) *pProc = wci->pWndProc;
334
335 TRACE("returning 0x%04x\n", atom);
336 return atom;
337}
338
339/***********************************************************************
340 * AtlModuleRegisterWndClassInfoW [ATL.@]
341 *
342 * PARAMS
343 * pm [IO] Information about the module registering the window.
344 * wci [IO] Information about the window being registered.
345 * pProc [O] Window procedure of the registered class.
346 *
347 * RETURNS
348 * Atom representing the registered class.
349 *
350 * NOTES
351 * Can be called multiple times without error, unlike RegisterClassEx().
352 *
353 * If the class name is NULL, then a class with a name of "ATL:xxxxxxxx" is
354 * registered, where 'xxxxxxxx' represents a unique hexadecimal value.
355 *
356 */
358{
359 ATOM atom;
360
361 FIXME("%p %p %p semi-stub\n", pm, wci, pProc);
362
363 atom = wci->m_atom;
364 if (!atom)
365 {
366 WNDCLASSEXW wc;
367
368 TRACE("wci->m_wc.lpszClassName = %s\n", debugstr_w(wci->m_wc.lpszClassName));
369
370 if (wci->m_lpszOrigName)
371 FIXME( "subclassing %s not implemented\n", debugstr_w(wci->m_lpszOrigName));
372
373 if (!wci->m_wc.lpszClassName)
374 {
375#ifndef __REACTOS__
376 swprintf(wci->m_szAutoName, ARRAY_SIZE(wci->m_szAutoName), L"ATL:%p", wci);
377#else
378 swprintf(wci->m_szAutoName, L"ATL:%p", wci);
379#endif
380 TRACE("auto-generated class name %s\n", debugstr_w(wci->m_szAutoName));
381 wci->m_wc.lpszClassName = wci->m_szAutoName;
382 }
383
384 atom = GetClassInfoExW(pm->m_hInst, wci->m_wc.lpszClassName, &wc);
385 if (!atom)
386 {
387 wci->m_wc.hInstance = pm->m_hInst;
388 wci->m_wc.hCursor = LoadCursorW( wci->m_bSystemCursor ? NULL : pm->m_hInst,
389 wci->m_lpszCursorID );
390 atom = RegisterClassExW(&wci->m_wc);
391 }
392 wci->pWndProc = wci->m_wc.lpfnWndProc;
393 wci->m_atom = atom;
394 }
395
396 if (wci->m_lpszOrigName) *pProc = wci->pWndProc;
397
398 TRACE("returning 0x%04x\n", atom);
399 return atom;
400}
401
402/***********************************************************************
403 * AtlModuleAddCreateWndData [ATL.@]
404 */
406{
407 TRACE("(%p, %p, %p)\n", pM, pData, pvObject);
408
409 pData->m_pThis = pvObject;
410 pData->m_dwThreadID = GetCurrentThreadId();
411
413 pData->m_pNext = pM->m_pCreateWndList;
416}
417
418/***********************************************************************
419 * AtlModuleExtractCreateWndData [ATL.@]
420 *
421 * NOTE: Tests show that this function extracts one of _AtlCreateWndData
422 * records from the current thread from a list
423 *
424 */
426{
428 void *ret = NULL;
429
430 TRACE("(%p)\n", pM);
431
433
434 for(ppData = &pM->m_pCreateWndList; *ppData!=NULL; ppData = &(*ppData)->m_pNext)
435 {
436 if ((*ppData)->m_dwThreadID == GetCurrentThreadId())
437 {
439 *ppData = pData->m_pNext;
440 ret = pData->m_pThis;
441 break;
442 }
443 }
444
446 return ret;
447}
448
449/***********************************************************************
450 * AtlModuleUpdateRegistryFromResourceD [ATL.@]
451 *
452 */
454 BOOL bRegister, struct _ATL_REGMAP_ENTRY* pMapEntries, IRegistrar* pReg)
455{
456 TRACE("(%p %s %d %p %p)\n", pM, debugstr_w(lpszRes), bRegister, pMapEntries, pReg);
457
458 return AtlUpdateRegistryFromResourceD(pM->m_hInst, lpszRes, bRegister, pMapEntries, pReg);
459}
460
462{
463 TRACE("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppvObject);
464
466 *ppvObject = iface;
467 IClassFactory_AddRef( iface );
468 return S_OK;
469 }
470
471 return E_NOINTERFACE;
472}
473
475{
476 return 2;
477}
478
480{
481 return 1;
482}
483
485 REFIID riid, void **ppv)
486{
487 IRegistrar *registrar;
489
490 TRACE("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
491
492 if(pUnkOuter) {
493 *ppv = NULL;
495 }
496
497 hres = AtlCreateRegistrar(&registrar);
498 if(FAILED(hres))
499 return hres;
500
501 hres = IRegistrar_QueryInterface(registrar, riid, ppv);
502 IRegistrar_Release(registrar);
503 return hres;
504}
505
507{
508 TRACE("(%p)->(%x)\n", iface, lock);
509 return S_OK;
510}
511
512static const IClassFactoryVtbl IRegistrarCFVtbl = {
518};
519
521
522#ifdef __REACTOS__
523static HRESULT do_register_dll_server(IRegistrar *pRegistrar, LPCOLESTR wszDll,
524 LPCOLESTR wszId, BOOL do_register,
525 const struct _ATL_REGMAP_ENTRY* pMapEntries)
526{
527 IRegistrar *registrar;
529 const struct _ATL_REGMAP_ENTRY *pMapEntry;
530
531 static const WCHAR wszModule[] = {'M','O','D','U','L','E',0};
532 static const WCHAR wszRegistry[] = {'R','E','G','I','S','T','R','Y',0};
533
534 if(pRegistrar) {
535 registrar = pRegistrar;
536 }else {
537 hres = AtlCreateRegistrar(&registrar);
538 if(FAILED(hres))
539 return hres;
540 }
541
542 IRegistrar_AddReplacement(registrar, wszModule, wszDll);
543
544 for (pMapEntry = pMapEntries; pMapEntry && pMapEntry->szKey; pMapEntry++)
545 IRegistrar_AddReplacement(registrar, pMapEntry->szKey, pMapEntry->szData);
546
547 if(do_register)
548 hres = IRegistrar_ResourceRegisterSz(registrar, wszDll, wszId, wszRegistry);
549 else
550 hres = IRegistrar_ResourceUnregisterSz(registrar, wszDll, wszId, wszRegistry);
551
552 if(registrar != pRegistrar)
553 IRegistrar_Release(registrar);
554 return hres;
555}
556
557static HRESULT do_register_server(BOOL do_register)
558{
559 static const WCHAR CLSID_RegistrarW[] =
560 {'C','L','S','I','D','_','R','e','g','i','s','t','r','a','r',0};
561 static const WCHAR atl_dllW[] = {'a','t','l','.','d','l','l',0};
562
563 WCHAR clsid_str[40];
564 const struct _ATL_REGMAP_ENTRY reg_map[] = {{CLSID_RegistrarW, clsid_str}, {NULL,NULL}};
565
566 StringFromGUID2(&CLSID_Registrar, clsid_str, sizeof(clsid_str)/sizeof(WCHAR));
567 return do_register_dll_server(NULL, atl_dllW, MAKEINTRESOURCEW(101), do_register, reg_map);
568}
569#endif
570
571/**************************************************************
572 * DllGetClassObject (ATL.2)
573 */
575{
577
578 if(IsEqualGUID(&CLSID_Registrar, clsid))
579 return IClassFactory_QueryInterface( &RegistrarCF, riid, ppvObject );
580
581 FIXME("Not supported class %s\n", debugstr_guid(clsid));
583}
584
585/***********************************************************************
586 * DllRegisterServer (ATL.@)
587 */
589{
590#ifdef __REACTOS__
591 /* Note: we can't use __wine_register_server here because it uses CLSID_Registrar which isn't registred yet */
592 return do_register_server(TRUE);
593#else
595#endif
596}
597
598/***********************************************************************
599 * DllUnRegisterServer (ATL.@)
600 */
602{
603#ifdef __REACTOS__
604 return do_register_server(FALSE);
605#else
607#endif
608}
609
610/***********************************************************************
611 * DllCanUnloadNow (ATL.@)
612 */
614{
615 return S_FALSE;
616}
HRESULT WINAPI AtlModuleTerm(_ATL_MODULE *pM)
Definition: atl30.c:112
static HRESULT WINAPI RegistrarCF_CreateInstance(IClassFactory *iface, LPUNKNOWN pUnkOuter, REFIID riid, void **ppv)
Definition: atl30.c:484
HRESULT WINAPI DllRegisterServer(void)
Definition: atl30.c:588
ATOM WINAPI AtlModuleRegisterWndClassInfoW(_ATL_MODULEW *pm, _ATL_WNDCLASSINFOW *wci, WNDPROC *pProc)
Definition: atl30.c:357
void *WINAPI AtlModuleExtractCreateWndData(_ATL_MODULEW *pM)
Definition: atl30.c:425
HRESULT WINAPI AtlModuleUnregisterServer(_ATL_MODULEW *pm, const CLSID *clsid)
Definition: atl30.c:287
HRESULT WINAPI AtlModuleInit(_ATL_MODULEW *pM, _ATL_OBJMAP_ENTRYW *p, HINSTANCE h)
Definition: atl30.c:39
static _ATL_OBJMAP_ENTRYW_V1 * get_objmap_entry(_ATL_MODULEW *mod, unsigned int index)
Definition: atl30.c:88
HRESULT WINAPI AtlModuleGetClassObject(_ATL_MODULEW *pm, REFCLSID rclsid, REFIID riid, LPVOID *ppv)
Definition: atl30.c:227
HRESULT WINAPI AtlModuleRegisterTypeLib(_ATL_MODULEW *pm, LPCOLESTR lpszIndex)
Definition: atl30.c:265
HRESULT WINAPI AtlModuleRegisterServer(_ATL_MODULEW *pM, BOOL bRegTypeLib, const CLSID *clsid)
Definition: atl30.c:181
HRESULT WINAPI DllGetClassObject(REFCLSID clsid, REFIID riid, LPVOID *ppvObject)
Definition: atl30.c:574
HRESULT WINAPI AtlModuleUnregisterServerEx(_ATL_MODULEW *pM, BOOL bUnRegTypeLib, const CLSID *pCLSID)
Definition: atl30.c:171
static IClassFactory RegistrarCF
Definition: atl30.c:520
HRESULT WINAPI DllUnregisterServer(void)
Definition: atl30.c:601
HRESULT WINAPI AtlModuleLoadTypeLib(_ATL_MODULEW *pM, LPCOLESTR lpszIndex, BSTR *pbstrPath, ITypeLib **ppTypeLib)
Definition: atl30.c:101
static const IClassFactoryVtbl IRegistrarCFVtbl
Definition: atl30.c:512
HINSTANCE atl_instance
Definition: atl.c:36
HRESULT WINAPI AtlModuleRevokeClassObjects(_ATL_MODULEW *pm)
Definition: atl30.c:278
static ULONG WINAPI RegistrarCF_Release(IClassFactory *iface)
Definition: atl30.c:479
static ULONG WINAPI RegistrarCF_AddRef(IClassFactory *iface)
Definition: atl30.c:474
static HRESULT WINAPI RegistrarCF_LockServer(IClassFactory *iface, BOOL lock)
Definition: atl30.c:506
HRESULT WINAPI DllCanUnloadNow(void)
Definition: atl30.c:613
static HRESULT WINAPI RegistrarCF_QueryInterface(IClassFactory *iface, REFIID riid, void **ppvObject)
Definition: atl30.c:461
HRESULT WINAPI AtlModuleUpdateRegistryFromResourceD(_ATL_MODULEW *pM, LPCOLESTR lpszRes, BOOL bRegister, struct _ATL_REGMAP_ENTRY *pMapEntries, IRegistrar *pReg)
Definition: atl30.c:453
ATOM WINAPI AtlModuleRegisterWndClassInfoA(_ATL_MODULEA *pm, _ATL_WNDCLASSINFOA *wci, WNDPROC *pProc)
Definition: atl30.c:298
HRESULT WINAPI AtlModuleRegisterClassObjects(_ATL_MODULEW *pM, DWORD dwClsContext, DWORD dwFlags)
Definition: atl30.c:133
void WINAPI AtlModuleAddCreateWndData(_ATL_MODULEW *pM, _AtlCreateWndData *pData, void *pvObject)
Definition: atl30.c:405
#define ATLVer1Size
Definition: atl30.c:37
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
#define index(s, c)
Definition: various.h:29
#define ARRAY_SIZE(A)
Definition: main.h:33
const GUID IID_IUnknown
const GUID IID_IClassFactory
#define FIXME(fmt,...)
Definition: debug.h:111
#define WARN(fmt,...)
Definition: debug.h:112
#define E_INVALIDARG
Definition: ddrawi.h:101
#define E_FAIL
Definition: ddrawi.h:102
WORD ATOM
Definition: dimm.idl:113
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
HRESULT WINAPI AtlRegisterClassCategoriesHelper(REFCLSID clsid, const struct _ATL_CATMAP_ENTRY *catmap, BOOL reg)
Definition: atl.c:747
HRESULT WINAPI AtlLoadTypeLib(HINSTANCE inst, LPCOLESTR lpszIndex, BSTR *pbstrPath, ITypeLib **ppTypeLib)
Definition: atl.c:341
HRESULT WINAPI AtlRegisterTypeLib(HINSTANCE inst, const WCHAR *index)
Definition: atl.c:399
HRESULT WINAPI AtlUpdateRegistryFromResourceD(HINSTANCE inst, LPCOLESTR res, BOOL bRegister, struct _ATL_REGMAP_ENTRY *pMapEntries, IRegistrar *pReg)
Definition: registrar.c:706
HRESULT WINAPI AtlCreateRegistrar(IRegistrar **ret)
Definition: registrar.c:687
#define GetProcessHeap()
Definition: compat.h:736
OLECHAR * BSTR
Definition: compat.h:2293
#define HeapFree(x, y, z)
Definition: compat.h:735
HRESULT WINAPI CoRegisterClassObject(REFCLSID rclsid, LPUNKNOWN pUnk, DWORD dwClsContext, DWORD flags, LPDWORD lpdwRegister)
Definition: compobj.c:2897
INT WINAPI StringFromGUID2(REFGUID id, LPOLESTR str, INT cmax)
Definition: compobj.c:2434
#define swprintf
Definition: precomp.h:40
_In_ PUNKNOWN pUnknown
Definition: drmk.h:76
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLsizeiptr size
Definition: glext.h:5919
GLuint index
Definition: glext.h:6031
GLfloat GLfloat p
Definition: glext.h:8902
GLfloat GLfloat GLfloat GLfloat h
Definition: glext.h:7723
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
static int mod
Definition: i386-dis.c:1288
REFIID riid
Definition: atlbase.h:39
REFIID LPVOID * ppv
Definition: atlbase.h:39
struct _ATL_MODULEW_TAG _ATL_MODULEW
#define S_OK
Definition: intsafe.h:52
#define SUCCEEDED(hr)
Definition: intsafe.h:50
#define FAILED(hr)
Definition: intsafe.h:51
#define debugstr_guid
Definition: kernel32.h:35
#define debugstr_a
Definition: kernel32.h:31
#define debugstr_w
Definition: kernel32.h:32
static LPMONITOREX pm
Definition: localmon.c:45
PSDBQUERYRESULT_VISTA PVOID * ppData
Definition: env.c:56
#define sprintf(buf, format,...)
Definition: sprintf.c:55
HRESULT hres
Definition: protocol.c:465
REFCLSID clsid
Definition: msctf.c:82
unsigned int UINT
Definition: ndis.h:50
static LPUNKNOWN
Definition: ndr_ole.c:49
#define L(x)
Definition: ntvdm.h:50
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
#define IsEqualCLSID(rclsid1, rclsid2)
Definition: guiddef.h:96
HRESULT __wine_unregister_resources(HMODULE module) DECLSPEC_HIDDEN
Definition: register.c:110
HRESULT __wine_register_resources(HMODULE module) DECLSPEC_HIDDEN
Definition: register.c:98
#define memset(x, y, z)
Definition: compat.h:39
#define TRACE(s)
Definition: solgame.cpp:4
Definition: atlbase.h:248
UINT cbSize
Definition: atlbase.h:192
_ATL_TERMFUNC_ELEM * m_pTermFuncs
Definition: atlbase.h:194
HINSTANCE m_hInstResource
Definition: atlbase.h:160
CRITICAL_SECTION m_csTypeInfoHolder
Definition: atlbase.h:167
HINSTANCE m_hInst
Definition: atlbase.h:159
CRITICAL_SECTION m_csWindowCreate
Definition: atlbase.h:170
_ATL_OBJMAP_ENTRYW * m_pObjMap
Definition: atlbase.h:162
CRITICAL_SECTION m_csObjMap
Definition: atlbase.h:171
union _ATL_MODULEW_TAG::@3562 u
_AtlCreateWndData * m_pCreateWndList
Definition: atlbase.h:174
HINSTANCE m_hInstTypeLib
Definition: atlbase.h:161
HANDLE m_hHeap
Definition: atlbase.h:164
const CLSID * pclsid
Definition: atlbase.h:86
Definition: atlbase.h:242
LPCOLESTR szKey
Definition: atlbase.h:243
LPCOLESTR szData
Definition: atlbase.h:244
struct _ATL_TERMFUNC_ELEM_TAG * pNext
Definition: atlbase.h:119
_ATL_TERMFUNC * pFunc
Definition: atlbase.h:117
LPCSTR m_lpszOrigName
Definition: atlwin.h:27
CHAR m_szAutoName[sizeof("ATL:")+sizeof(void *) *2]
Definition: atlwin.h:32
WNDCLASSEXA m_wc
Definition: atlwin.h:26
LPCSTR m_lpszCursorID
Definition: atlwin.h:29
LPCWSTR m_lpszCursorID
Definition: atlwin.h:40
WCHAR m_szAutoName[sizeof("ATL:")+sizeof(void *) *2]
Definition: atlwin.h:43
WNDCLASSEXW m_wc
Definition: atlwin.h:37
LPCWSTR m_lpszOrigName
Definition: atlwin.h:38
HINSTANCE hInstance
Definition: winuser.h:3206
HCURSOR hCursor
Definition: winuser.h:3208
WNDPROC lpfnWndProc
Definition: winuser.h:3203
LPCSTR lpszClassName
Definition: winuser.h:3211
LPCWSTR lpszClassName
Definition: winuser.h:3226
WNDPROC lpfnWndProc
Definition: winuser.h:3218
HCURSOR hCursor
Definition: winuser.h:3223
HINSTANCE hInstance
Definition: winuser.h:3221
VOID WINAPI InitializeCriticalSection(OUT LPCRITICAL_SECTION lpCriticalSection)
Definition: synch.c:751
rwlock_t lock
Definition: tcpcore.h:0
TW_UINT32 TW_UINT16 TW_UINT16 TW_MEMREF pData
Definition: twain.h:1830
int32_t INT
Definition: typedefs.h:58
uint32_t ULONG
Definition: typedefs.h:59
int ret
DWORD WINAPI GetCurrentThreadId(void)
Definition: thread.c:459
void WINAPI LeaveCriticalSection(LPCRITICAL_SECTION)
void WINAPI EnterCriticalSection(LPCRITICAL_SECTION)
_In_ PCCERT_CONTEXT _In_ DWORD dwFlags
Definition: wincrypt.h:1176
_In_ void _In_ PCCERT_CONTEXT _In_opt_ LPFILETIME _In_ DWORD _In_ DWORD _Outptr_opt_ void ** ppvObject
Definition: wincrypt.h:6082
#define WINAPI
Definition: msvc.h:6
#define S_FALSE
Definition: winerror.h:2357
#define E_NOINTERFACE
Definition: winerror.h:2364
#define CLASS_E_NOAGGREGATION
Definition: winerror.h:2662
#define CLASS_E_CLASSNOTAVAILABLE
Definition: winerror.h:2663
BOOL WINAPI GetClassInfoExA(_In_opt_ HINSTANCE, _In_ LPCSTR, _Out_ LPWNDCLASSEXA)
BOOL WINAPI GetClassInfoExW(_In_opt_ HINSTANCE, _In_ LPCWSTR, _Out_ LPWNDCLASSEXW)
HCURSOR WINAPI LoadCursorW(_In_opt_ HINSTANCE, _In_ LPCWSTR)
Definition: cursoricon.c:2105
ATOM WINAPI RegisterClassExA(_In_ CONST WNDCLASSEXA *)
ATOM WINAPI RegisterClassExW(_In_ CONST WNDCLASSEXW *)
#define MAKEINTRESOURCEW(i)
Definition: winuser.h:582
LRESULT(CALLBACK * WNDPROC)(HWND, UINT, WPARAM, LPARAM)
Definition: winuser.h:2906
HCURSOR WINAPI LoadCursorA(_In_opt_ HINSTANCE, _In_ LPCSTR)
Definition: cursoricon.c:2090
__wchar_t WCHAR
Definition: xmlstorage.h:180