MODLOAD_DATA structure (dbghelp.h)
Contains module data.
Syntax
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 |
---|---|
|
The data member is a buffer that contains an array of IMAGE_DEBUG_DIRECTORY structures. |
|
The 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
Requirement | Value |
---|---|
Header | dbghelp.h |
Redistributable | DbgHelp.dll 6.0 or later |