From b188d0f595252d2463ca04a6e14eb3056f1faa7d Mon Sep 17 00:00:00 2001 From: Luke Dunstan Date: Mon, 31 May 2004 14:10:20 +0000 Subject: [PATCH] 2004-05-29 Filip Navara * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration. --- winsup/w32api/ChangeLog | 4 ++++ winsup/w32api/include/winnt.h | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 92c4108ed..33b5b89c0 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,7 @@ +2004-05-29 Filip Navara + + * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration. + 2004-05-25 Al Slater * include/httpext.h (HSE_SEND_HEADER_EX_INFO, diff --git a/winsup/w32api/include/winnt.h b/winsup/w32api/include/winnt.h index df156b825..a34bdf929 100644 --- a/winsup/w32api/include/winnt.h +++ b/winsup/w32api/include/winnt.h @@ -2619,9 +2619,9 @@ typedef struct _IMAGE_EXPORT_DIRECTORY { DWORD Base; DWORD NumberOfFunctions; DWORD NumberOfNames; - PDWORD *AddressOfFunctions; - PDWORD *AddressOfNames; - PWORD *AddressOfNameOrdinals; + DWORD AddressOfFunctions; + DWORD AddressOfNames; + DWORD AddressOfNameOrdinals; } IMAGE_EXPORT_DIRECTORY,*PIMAGE_EXPORT_DIRECTORY; typedef struct _IMAGE_IMPORT_BY_NAME { WORD Hint;