Further PE/COFF module improvements

This commit is contained in:
2022-11-12 12:37:49 +01:00
bovenliggende 60c56c4462
commit b03c9c2a25
5 gewijzigde bestanden met toevoegingen van 107 en 54 verwijderingen

Bestand weergeven

@@ -12,6 +12,7 @@
#include "xtdefs.h"
#include "xtstruct.h"
#include "xttypes.h"
#include "xtfw.h"
/* PE/COFF file image signatures */
@@ -190,10 +191,13 @@
/* PE/COFF image representation structure */
typedef struct _PECOFF_IMAGE_CONTEXT
{
PPECOFF_IMAGE_DOS_HEADER DosHeader;
PPECOFF_IMAGE_PE_HEADER PeHeader;
PVOID Data;
UINT64 FileSize;
UINT ImagePages;
UINT ImageSize;
LOADER_MEMORY_TYPE MemoryType;
PVOID VirtualAddress;
} PECOFF_IMAGE_CONTEXT, *PPECOFF_IMAGE_CONTEXT;