ImageDirectoryEntryToData function
Obtains access to image-specific data.
This function has been superseded by the ImageDirectoryEntryToDataEx function. Use ImageDirectoryEntryToDataEx to retrieve the section header.
Syntax
PVOID WINAPI ImageDirectoryEntryToData( _In_ PVOID Base, _In_ BOOLEAN MappedAsImage, _In_ USHORT DirectoryEntry, _Out_ PULONG Size );
Parameters
- Base [in]
-
The base address of the image.
- MappedAsImage [in]
-
If this parameter is TRUE, the file is mapped by the system as an image. If the flag is FALSE, the file is mapped as a data file by the MapViewOfFile function.
- DirectoryEntry [in]
-
The index number of the desired directory entry. This parameter can be one of the following values.
- Size [out]
-
A pointer to a variable that receives the size of the data for the directory entry, in bytes.
Return value
If the function succeeds, the return value is a pointer to the directory entry's data.
If the function fails, the return value is NULL. To retrieve extended error information, call GetLastError.
Remarks
The ImageDirectoryEntryToData function is used to obtain access to image-specific data.
All DbgHelp functions, such as this one, are single threaded. Therefore, calls from more than one thread to this function will likely result in unexpected behavior or memory corruption. To avoid this, you must synchronize all concurrent calls from more than one thread to this function.
Requirements
|
Redistributable |
DbgHelp.dll 5.1 or later |
|---|---|
|
Header |
|
|
Library |
|
|
DLL |
|
See also