description | title | ms.date | f1_keywords | ms.assetid | ||
---|---|---|---|---|---|---|
Learn more about: WinModule Global Functions |
WinModule Global Functions |
11/04/2016 |
|
8ce45a5b-26a7-491f-9096-c09ceca5f2c2 |
These functions provide support for _AtlCreateWndData
structure operations.
Important
The functions listed in the following table cannot be used in applications that execute in the Windows Runtime.
Name | Description |
---|---|
AtlWinModuleAddCreateWndData | This function is used to initialize and add an _AtlCreateWndData structure. |
AtlWinModuleExtractCreateWndData | Call this function to extract an existing _AtlCreateWndData structure. |
Header: atlbase.h
This function is used to initialize and add an _AtlCreateWndData
structure.
ATLINLINE ATLAPI_(void) AtlWinModuleAddCreateWndData(
_ATL_WIN_MODULE* pWinModule,
_AtlCreateWndData* pData,
void* pObject);
pWinModule
Pointer to a module's _ATL_WIN_MODULE70 structure.
pData
Pointer to the _AtlCreateWndData structure to be initialized and added to the current module.
pObject
Pointer to an object's this
pointer.
Initializes an _AtlCreateWndData
structure, which is used to store the this
pointer used to refer to class instances, and adds it to the list referenced by a module's _ATL_WIN_MODULE70
structure. Called by CAtlWinModule::AddCreateWndData.
Call this function to extract an existing _AtlCreateWndData
structure.
ATLINLINE ATLAPI_(void*) AtlWinModuleExtractCreateWndData(_ATL_WIN_MODULE* pWinModule);
pWinModule
Pointer to a module's _ATL_WIN_MODULE70 structure.
Returns a pointer to the _AtlCreateWndData structure.
This function will extract an existing _AtlCreateWndData
structure from the list referenced by a module's _ATL_WIN_MODULE70
structure.