ImageNtHeader Function
Locates the IMAGE_NT_HEADERS structure in a PE image and returns a pointer to the data.
PIMAGE_NT_HEADERS WINAPI ImageNtHeader( __in PVOID ImageBase );
Parameters
- ImageBase
-
The base address of an image that is mapped into memory by a call to the MapViewOfFile function.
Return Value
If the function succeeds, the return value is a pointer to an IMAGE_NT_HEADERS structure.
If the function fails, the return value is NULL. To retrieve extended error information, call GetLastError.
Remarks
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 |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in Dbghelp.h. |
Library |
Use Dbghelp.lib. |
DLL |
Requires Dbghelp.dll. |
See Also
DbgHelp FunctionsIMAGE_NT_HEADERS
MapViewOfFile
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.