MODLOAD_DATA Structure
Contains module data.
typedef struct _MODLOAD_DATA {
DWORD ssize;
DWORD ssig;
PVOID data;
DWORD size;
DWORD flags; } MODLOAD_DATA,
*PMODLOAD_DATA;
Members
- ssize
The size of this structure, in bytes.
- ssig
The type of data. This member can be one of the following values.
Value Meaning DBHHEADER_DEBUGDIRS
0x1The data member is a buffer that contains an array of IMAGE_DEBUG_DIRECTORY structures.
DBHHEADER_CVMISC
0x2The data member is a buffer that contains an array of MODLOAD_CVMISC structures.
- data
The data. The format of this data depends on the value of the ssig member.
- size
The size of the data buffer, in bytes.
- flags
This member is unused.
Requirements
Redistributable |
Requires DbgHelp.dll 6.0 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
IMAGE_DEBUG_DIRECTORY
MODLOAD_CVMISC
SymLoadModuleEx
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.