From 1b4c779270140040acdd6377bb5535fe493ac52d Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 7 Nov 2000 20:29:00 +0000 Subject: [PATCH] Added missing IMAGE_DEBUG_MISC definition. --- include/winnt.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/winnt.h b/include/winnt.h index 60afdc4add2..4f65d3f22d9 100644 --- a/include/winnt.h +++ b/include/winnt.h @@ -2319,6 +2319,16 @@ typedef struct _IMAGE_FUNCTION_ENTRY { DWORD EndOfPrologue; } IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY; +#define IMAGE_DEBUG_MISC_EXENAME 1 + +typedef struct _IMAGE_DEBUG_MISC { + DWORD DataType; + DWORD Length; + BYTE Unicode; + BYTE Reserved[ 3 ]; + BYTE Data[ 1 ]; +} IMAGE_DEBUG_MISC, *PIMAGE_DEBUG_MISC; + /* This is the structure that appears at the very start of a .DBG file. */ typedef struct _IMAGE_SEPARATE_DEBUG_HEADER {