https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b513c61cd130b6e73ff7bb...
commit b513c61cd130b6e73ff7bb456edfd9aa7a41ec0d Author: Jérôme Gardou jerome.gardou@reactos.org AuthorDate: Tue Apr 27 09:56:23 2021 +0200 Commit: Jérôme Gardou zefklop@users.noreply.github.com CommitDate: Wed Apr 28 13:10:23 2021 +0200
[SDK] Fix definition of IMAGE_NT_HEADERS64 in host tools --- sdk/include/host/pecoff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdk/include/host/pecoff.h b/sdk/include/host/pecoff.h index 74104075fb6..f96982e910a 100644 --- a/sdk/include/host/pecoff.h +++ b/sdk/include/host/pecoff.h @@ -188,7 +188,7 @@ typedef struct _IMAGE_NT_HEADERS64 { DWORD Signature; IMAGE_FILE_HEADER FileHeader; - IMAGE_OPTIONAL_HEADER32 OptionalHeader; + IMAGE_OPTIONAL_HEADER64 OptionalHeader; } IMAGE_NT_HEADERS64, *PIMAGE_NT_HEADERS64;
#ifdef _TARGET_PE64