2 * Implementation of Active Template Library (atl.dll)
4 * Copyright 2004 Aric Stewart for CodeWeavers
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
31 #include "wine/debug.h"
39 #include "wine/unicode.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(atl
);
43 DECLSPEC_HIDDEN HINSTANCE hInst
;
45 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
47 TRACE("(0x%p, %d, %p)\n",hinstDLL
,fdwReason
,lpvReserved
);
49 if (fdwReason
== DLL_PROCESS_ATTACH
) {
50 DisableThreadLibraryCalls(hinstDLL
);
56 #define ATLVer1Size FIELD_OFFSET(_ATL_MODULEW, dwAtlBuildVer)
58 HRESULT WINAPI
AtlModuleInit(_ATL_MODULEW
* pM
, _ATL_OBJMAP_ENTRYW
* p
, HINSTANCE h
)
63 FIXME("SEMI-STUB (%p %p %p)\n",pM
,p
,h
);
69 case sizeof(_ATL_MODULEW
):
71 case sizeof(_ATL_MODULEW
) + sizeof(void *):
75 WARN("Unknown structure version (size %i)\n",size
);
79 memset(pM
,0,pM
->cbSize
);
82 pM
->m_hInstResource
= h
;
83 pM
->m_hInstTypeLib
= h
;
85 pM
->m_hHeap
= GetProcessHeap();
87 InitializeCriticalSection(&pM
->u
.m_csTypeInfoHolder
);
88 InitializeCriticalSection(&pM
->m_csWindowCreate
);
89 InitializeCriticalSection(&pM
->m_csObjMap
);
93 if (pM
->m_pObjMap
!= NULL
&& size
> ATLVer1Size
)
95 while (pM
->m_pObjMap
[i
].pclsid
!= NULL
)
97 TRACE("Initializing object %i %p\n",i
,p
[i
].pfnObjectMain
);
98 if (p
[i
].pfnObjectMain
)
99 p
[i
].pfnObjectMain(TRUE
);
107 static _ATL_OBJMAP_ENTRYW_V1
*get_objmap_entry( _ATL_MODULEW
*mod
, unsigned int index
)
109 _ATL_OBJMAP_ENTRYW_V1
*ret
;
111 if (mod
->cbSize
== ATLVer1Size
)
112 ret
= (_ATL_OBJMAP_ENTRYW_V1
*)mod
->m_pObjMap
+ index
;
114 ret
= (_ATL_OBJMAP_ENTRYW_V1
*)(mod
->m_pObjMap
+ index
);
116 if (!ret
->pclsid
) ret
= NULL
;
120 HRESULT WINAPI
AtlModuleLoadTypeLib(_ATL_MODULEW
*pM
, LPCOLESTR lpszIndex
,
121 BSTR
*pbstrPath
, ITypeLib
**ppTypeLib
)
124 OLECHAR path
[MAX_PATH
+8]; /* leave some space for index */
126 TRACE("(%p, %s, %p, %p)\n", pM
, debugstr_w(lpszIndex
), pbstrPath
, ppTypeLib
);
131 GetModuleFileNameW(pM
->m_hInstTypeLib
, path
, MAX_PATH
);
133 lstrcatW(path
, lpszIndex
);
135 hRes
= LoadTypeLib(path
, ppTypeLib
);
139 *pbstrPath
= SysAllocString(path
);
144 HRESULT WINAPI
AtlModuleTerm(_ATL_MODULEW
* pM
)
146 _ATL_TERMFUNC_ELEM
*iter
= pM
->m_pTermFuncs
, *tmp
;
151 iter
->pFunc(iter
->dw
);
154 HeapFree(GetProcessHeap(), 0, tmp
);
157 HeapFree(GetProcessHeap(), 0, pM
);
162 HRESULT WINAPI
AtlModuleAddTermFunc(_ATL_MODULEW
*pM
, _ATL_TERMFUNC
*pFunc
, DWORD_PTR dw
)
164 _ATL_TERMFUNC_ELEM
*termfunc_elem
;
166 TRACE("(%p %p %ld)\n", pM
, pFunc
, dw
);
168 termfunc_elem
= HeapAlloc(GetProcessHeap(), 0, sizeof(_ATL_TERMFUNC_ELEM
));
169 termfunc_elem
->pFunc
= pFunc
;
170 termfunc_elem
->dw
= dw
;
171 termfunc_elem
->pNext
= pM
->m_pTermFuncs
;
173 pM
->m_pTermFuncs
= termfunc_elem
;
178 HRESULT WINAPI
AtlModuleRegisterClassObjects(_ATL_MODULEW
*pM
, DWORD dwClsContext
,
181 _ATL_OBJMAP_ENTRYW_V1
*obj
;
185 TRACE("(%p %i %i)\n",pM
, dwClsContext
, dwFlags
);
190 while ((obj
= get_objmap_entry( pM
, i
++ )))
195 TRACE("Registering object %i\n",i
);
196 if (obj
->pfnGetClassObject
)
198 rc
= obj
->pfnGetClassObject(obj
->pfnCreateInstance
, &IID_IUnknown
,
202 CoRegisterClassObject(obj
->pclsid
, pUnknown
, dwClsContext
,
203 dwFlags
, &obj
->dwRegister
);
205 IUnknown_Release(pUnknown
);
213 HRESULT WINAPI
AtlModuleUnregisterServerEx(_ATL_MODULEW
* pM
, BOOL bUnRegTypeLib
, const CLSID
* pCLSID
)
215 FIXME("(%p, %i, %p) stub\n", pM
, bUnRegTypeLib
, pCLSID
);
220 IUnknown
* WINAPI
AtlComPtrAssign(IUnknown
** pp
, IUnknown
*p
)
222 TRACE("(%p %p)\n", pp
, p
);
224 if (p
) IUnknown_AddRef(p
);
225 if (*pp
) IUnknown_Release(*pp
);
230 IUnknown
* WINAPI
AtlComQIPtrAssign(IUnknown
** pp
, IUnknown
*p
, REFIID riid
)
232 IUnknown
*new_p
= NULL
;
234 TRACE("(%p %p %s)\n", pp
, p
, debugstr_guid(riid
));
236 if (p
) IUnknown_QueryInterface(p
, riid
, (void **)&new_p
);
237 if (*pp
) IUnknown_Release(*pp
);
243 HRESULT WINAPI
AtlInternalQueryInterface(void* this, const _ATL_INTMAP_ENTRY
* pEntries
, REFIID iid
, void** ppvObject
)
246 HRESULT rc
= E_NOINTERFACE
;
247 TRACE("(%p, %p, %s, %p)\n",this, pEntries
, debugstr_guid(iid
), ppvObject
);
249 if (IsEqualGUID(iid
,&IID_IUnknown
))
251 TRACE("Returning IUnknown\n");
252 *ppvObject
= ((LPSTR
)this+pEntries
[0].dw
);
253 IUnknown_AddRef((IUnknown
*)*ppvObject
);
257 while (pEntries
[i
].pFunc
!= 0)
259 TRACE("Trying entry %i (%s %i %p)\n",i
,debugstr_guid(pEntries
[i
].piid
),
260 pEntries
[i
].dw
, pEntries
[i
].pFunc
);
262 if (!pEntries
[i
].piid
|| IsEqualGUID(iid
,pEntries
[i
].piid
))
265 if (pEntries
[i
].pFunc
== (_ATL_CREATORARGFUNC
*)1)
268 *ppvObject
= ((LPSTR
)this+pEntries
[i
].dw
);
269 IUnknown_AddRef((IUnknown
*)*ppvObject
);
275 rc
= pEntries
[i
].pFunc(this, iid
, ppvObject
, pEntries
[i
].dw
);
276 if(rc
==S_OK
|| pEntries
[i
].piid
)
282 TRACE("Done returning (0x%x)\n",rc
);
286 /***********************************************************************
287 * AtlModuleRegisterServer [ATL.@]
290 HRESULT WINAPI
AtlModuleRegisterServer(_ATL_MODULEW
* pM
, BOOL bRegTypeLib
, const CLSID
* clsid
)
292 const _ATL_OBJMAP_ENTRYW_V1
*obj
;
296 TRACE("%p %d %s\n", pM
, bRegTypeLib
, debugstr_guid(clsid
));
301 for (i
= 0; (obj
= get_objmap_entry( pM
, i
)) != NULL
; i
++) /* register CLSIDs */
303 if (!clsid
|| IsEqualCLSID(obj
->pclsid
, clsid
))
305 TRACE("Registering clsid %s\n", debugstr_guid(obj
->pclsid
));
306 hRes
= obj
->pfnUpdateRegistry(TRUE
); /* register */
314 hRes
= AtlModuleRegisterTypeLib(pM
, NULL
);
322 /***********************************************************************
325 HRESULT WINAPI
AtlAdvise(IUnknown
*pUnkCP
, IUnknown
*pUnk
, const IID
*iid
, LPDWORD pdw
)
327 FIXME("%p %p %p %p\n", pUnkCP
, pUnk
, iid
, pdw
);
331 /***********************************************************************
332 * AtlUnadvise [ATL.@]
334 HRESULT WINAPI
AtlUnadvise(IUnknown
*pUnkCP
, const IID
*iid
, DWORD dw
)
336 FIXME("%p %p %d\n", pUnkCP
, iid
, dw
);
340 /***********************************************************************
341 * AtlFreeMarshalStream [ATL.@]
343 HRESULT WINAPI
AtlFreeMarshalStream(IStream
*stm
)
349 /***********************************************************************
350 * AtlMarshalPtrInProc [ATL.@]
352 HRESULT WINAPI
AtlMarshalPtrInProc(IUnknown
*pUnk
, const IID
*iid
, IStream
**pstm
)
354 FIXME("%p %p %p\n", pUnk
, iid
, pstm
);
358 /***********************************************************************
359 * AtlUnmarshalPtr [ATL.@]
361 HRESULT WINAPI
AtlUnmarshalPtr(IStream
*stm
, const IID
*iid
, IUnknown
**ppUnk
)
363 FIXME("%p %p %p\n", stm
, iid
, ppUnk
);
367 /***********************************************************************
368 * AtlModuleGetClassObject [ATL.@]
370 HRESULT WINAPI
AtlModuleGetClassObject(_ATL_MODULEW
*pm
, REFCLSID rclsid
,
371 REFIID riid
, LPVOID
*ppv
)
373 _ATL_OBJMAP_ENTRYW_V1
*obj
;
375 HRESULT hres
= CLASS_E_CLASSNOTAVAILABLE
;
377 TRACE("%p %s %s %p\n", pm
, debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
382 for (i
= 0; (obj
= get_objmap_entry( pm
, i
)) != NULL
; i
++)
384 if (IsEqualCLSID(obj
->pclsid
, rclsid
))
386 TRACE("found object %i\n", i
);
387 if (obj
->pfnGetClassObject
)
390 hres
= obj
->pfnGetClassObject(obj
->pfnCreateInstance
,
394 hres
= IUnknown_QueryInterface(obj
->pCF
, riid
, ppv
);
400 WARN("no class object found for %s\n", debugstr_guid(rclsid
));
405 /***********************************************************************
406 * AtlModuleGetClassObject [ATL.@]
408 HRESULT WINAPI
AtlModuleRegisterTypeLib(_ATL_MODULEW
*pm
, LPCOLESTR lpszIndex
)
414 TRACE("%p %s\n", pm
, debugstr_w(lpszIndex
));
419 hRes
= AtlModuleLoadTypeLib(pm
, lpszIndex
, &path
, &typelib
);
423 hRes
= RegisterTypeLib(typelib
, path
, NULL
); /* FIXME: pass help directory */
424 ITypeLib_Release(typelib
);
431 /***********************************************************************
432 * AtlModuleRevokeClassObjects [ATL.@]
434 HRESULT WINAPI
AtlModuleRevokeClassObjects(_ATL_MODULEW
*pm
)
440 /***********************************************************************
441 * AtlModuleUnregisterServer [ATL.@]
443 HRESULT WINAPI
AtlModuleUnregisterServer(_ATL_MODULEW
*pm
, const CLSID
*clsid
)
445 FIXME("%p %s\n", pm
, debugstr_guid(clsid
));
449 /***********************************************************************
450 * AtlModuleRegisterWndClassInfoA [ATL.@]
452 * See AtlModuleRegisterWndClassInfoW.
454 ATOM WINAPI
AtlModuleRegisterWndClassInfoA(_ATL_MODULEA
*pm
, _ATL_WNDCLASSINFOA
*wci
, WNDPROC
*pProc
)
458 FIXME("%p %p %p semi-stub\n", pm
, wci
, pProc
);
465 TRACE("wci->m_wc.lpszClassName = %s\n", wci
->m_wc
.lpszClassName
);
467 if (wci
->m_lpszOrigName
)
468 FIXME( "subclassing %s not implemented\n", debugstr_a(wci
->m_lpszOrigName
));
470 if (!wci
->m_wc
.lpszClassName
)
472 snprintf(wci
->m_szAutoName
, sizeof(wci
->m_szAutoName
), "ATL%08lx", (UINT_PTR
)wci
);
473 TRACE("auto-generated class name %s\n", wci
->m_szAutoName
);
474 wci
->m_wc
.lpszClassName
= wci
->m_szAutoName
;
477 atom
= GetClassInfoExA(pm
->m_hInst
, wci
->m_wc
.lpszClassName
, &wc
);
480 wci
->m_wc
.hInstance
= pm
->m_hInst
;
481 wci
->m_wc
.hCursor
= LoadCursorA( wci
->m_bSystemCursor
? NULL
: pm
->m_hInst
,
482 wci
->m_lpszCursorID
);
483 atom
= RegisterClassExA(&wci
->m_wc
);
485 wci
->pWndProc
= wci
->m_wc
.lpfnWndProc
;
489 if (wci
->m_lpszOrigName
) *pProc
= wci
->pWndProc
;
491 TRACE("returning 0x%04x\n", atom
);
495 /***********************************************************************
496 * AtlModuleRegisterWndClassInfoW [ATL.@]
499 * pm [IO] Information about the module registering the window.
500 * wci [IO] Information about the window being registered.
501 * pProc [O] Window procedure of the registered class.
504 * Atom representing the registered class.
507 * Can be called multiple times without error, unlike RegisterClassEx().
509 * If the class name is NULL, then a class with a name of "ATLxxxxxxxx" is
510 * registered, where the 'x's represent a unique value.
513 ATOM WINAPI
AtlModuleRegisterWndClassInfoW(_ATL_MODULEW
*pm
, _ATL_WNDCLASSINFOW
*wci
, WNDPROC
*pProc
)
517 FIXME("%p %p %p semi-stub\n", pm
, wci
, pProc
);
524 TRACE("wci->m_wc.lpszClassName = %s\n", debugstr_w(wci
->m_wc
.lpszClassName
));
526 if (wci
->m_lpszOrigName
)
527 FIXME( "subclassing %s not implemented\n", debugstr_w(wci
->m_lpszOrigName
));
529 if (!wci
->m_wc
.lpszClassName
)
531 static const WCHAR szFormat
[] = {'A','T','L','%','0','8','l','x',0};
532 snprintfW(wci
->m_szAutoName
, sizeof(wci
->m_szAutoName
)/sizeof(WCHAR
), szFormat
, (UINT_PTR
)wci
);
533 TRACE("auto-generated class name %s\n", debugstr_w(wci
->m_szAutoName
));
534 wci
->m_wc
.lpszClassName
= wci
->m_szAutoName
;
537 atom
= GetClassInfoExW(pm
->m_hInst
, wci
->m_wc
.lpszClassName
, &wc
);
540 wci
->m_wc
.hInstance
= pm
->m_hInst
;
541 wci
->m_wc
.hCursor
= LoadCursorW( wci
->m_bSystemCursor
? NULL
: pm
->m_hInst
,
542 wci
->m_lpszCursorID
);
543 atom
= RegisterClassExW(&wci
->m_wc
);
545 wci
->pWndProc
= wci
->m_wc
.lpfnWndProc
;
549 if (wci
->m_lpszOrigName
) *pProc
= wci
->pWndProc
;
551 TRACE("returning 0x%04x\n", atom
);
555 void WINAPI
AtlHiMetricToPixel(const SIZEL
* lpHiMetric
, SIZEL
* lpPix
)
557 HDC dc
= GetDC(NULL
);
558 lpPix
->cx
= lpHiMetric
->cx
* GetDeviceCaps( dc
, LOGPIXELSX
) / 100;
559 lpPix
->cy
= lpHiMetric
->cy
* GetDeviceCaps( dc
, LOGPIXELSY
) / 100;
560 ReleaseDC( NULL
, dc
);
563 void WINAPI
AtlPixelToHiMetric(const SIZEL
* lpPix
, SIZEL
* lpHiMetric
)
565 HDC dc
= GetDC(NULL
);
566 lpHiMetric
->cx
= 100 * lpPix
->cx
/ GetDeviceCaps( dc
, LOGPIXELSX
);
567 lpHiMetric
->cy
= 100 * lpPix
->cy
/ GetDeviceCaps( dc
, LOGPIXELSY
);
568 ReleaseDC( NULL
, dc
);
571 /***********************************************************************
572 * AtlCreateTargetDC [ATL.@]
574 HDC WINAPI
AtlCreateTargetDC( HDC hdc
, DVTARGETDEVICE
*dv
)
576 static const WCHAR displayW
[] = {'d','i','s','p','l','a','y',0};
577 const WCHAR
*driver
= NULL
, *device
= NULL
, *port
= NULL
;
578 DEVMODEW
*devmode
= NULL
;
580 TRACE( "(%p, %p)\n", hdc
, dv
);
584 if (dv
->tdDriverNameOffset
) driver
= (WCHAR
*)((char *)dv
+ dv
->tdDriverNameOffset
);
585 if (dv
->tdDeviceNameOffset
) device
= (WCHAR
*)((char *)dv
+ dv
->tdDeviceNameOffset
);
586 if (dv
->tdPortNameOffset
) port
= (WCHAR
*)((char *)dv
+ dv
->tdPortNameOffset
);
587 if (dv
->tdExtDevmodeOffset
) devmode
= (DEVMODEW
*)((char *)dv
+ dv
->tdExtDevmodeOffset
);
594 return CreateDCW( driver
, device
, port
, devmode
);
597 /***********************************************************************
598 * AtlModuleAddCreateWndData [ATL.@]
600 void WINAPI
AtlModuleAddCreateWndData(_ATL_MODULEW
*pM
, _AtlCreateWndData
*pData
, void* pvObject
)
602 TRACE("(%p, %p, %p)\n", pM
, pData
, pvObject
);
604 pData
->m_pThis
= pvObject
;
605 pData
->m_dwThreadID
= GetCurrentThreadId();
606 pData
->m_pNext
= pM
->m_pCreateWndList
;
607 pM
->m_pCreateWndList
= pData
;
610 /***********************************************************************
611 * AtlModuleExtractCreateWndData [ATL.@]
613 * NOTE: I failed to find any good description of this function.
614 * Tests show that this function extracts one of _AtlCreateWndData
615 * records from the current thread from a list
618 void* WINAPI
AtlModuleExtractCreateWndData(_ATL_MODULEW
*pM
)
620 _AtlCreateWndData
**ppData
;
624 for(ppData
= &pM
->m_pCreateWndList
; *ppData
!=NULL
; ppData
= &(*ppData
)->m_pNext
)
626 if ((*ppData
)->m_dwThreadID
== GetCurrentThreadId())
628 _AtlCreateWndData
*pData
= *ppData
;
629 *ppData
= pData
->m_pNext
;
630 return pData
->m_pThis
;
636 /* FIXME: should be in a header file */
637 typedef struct ATL_PROPMAP_ENTRY
641 const CLSID
* pclsidPropPage
;
642 const IID
* piidDispatch
;
648 /***********************************************************************
649 * AtlIPersistStreamInit_Load [ATL.@]
651 HRESULT WINAPI
AtlIPersistStreamInit_Load( LPSTREAM pStm
, ATL_PROPMAP_ENTRY
*pMap
,
652 void *pThis
, IUnknown
*pUnk
)
654 FIXME("(%p, %p, %p, %p)\n", pStm
, pMap
, pThis
, pUnk
);
659 HRESULT WINAPI
AtlIPersistStreamInit_Save(LPSTREAM pStm
, BOOL fClearDirty
,
660 ATL_PROPMAP_ENTRY
*pMap
, void *pThis
,
663 FIXME("(%p, %d, %p, %p, %p)\n", pStm
, fClearDirty
, pMap
, pThis
, pUnk
);