mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 12:52:58 +00:00
[PSDK] dbghelp.h: Fix 64 bit version of LOADED_IMAGE
This commit is contained in:
parent
0e8392beea
commit
ede5ec65c2
1 changed files with 5 additions and 1 deletions
|
@ -99,7 +99,11 @@ typedef struct _LOADED_IMAGE
|
||||||
PSTR ModuleName;
|
PSTR ModuleName;
|
||||||
HANDLE hFile;
|
HANDLE hFile;
|
||||||
PUCHAR MappedAddress;
|
PUCHAR MappedAddress;
|
||||||
PIMAGE_NT_HEADERS FileHeader;
|
#ifdef _IMAGEHLP64
|
||||||
|
PIMAGE_NT_HEADERS64 FileHeader;
|
||||||
|
#else
|
||||||
|
PIMAGE_NT_HEADERS32 FileHeader;
|
||||||
|
#endif
|
||||||
PIMAGE_SECTION_HEADER LastRvaSection;
|
PIMAGE_SECTION_HEADER LastRvaSection;
|
||||||
ULONG NumberOfSections;
|
ULONG NumberOfSections;
|
||||||
PIMAGE_SECTION_HEADER Sections;
|
PIMAGE_SECTION_HEADER Sections;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue