diff --git a/include/module.h b/include/module.h index e24e094f26a..5ede2d92ed0 100644 --- a/include/module.h +++ b/include/module.h @@ -8,7 +8,6 @@ #define __WINE_MODULE_H #include "windef.h" -#include "dosexe.h" #include "pe_image.h" /* In-memory module structure. See 'Windows Internals' p. 219 */ @@ -50,8 +49,6 @@ typedef struct _NE_MODULE HMODULE module32; /* 40 PE module handle for Win32 modules */ HMODULE16 self; /* 44 Handle for this module */ WORD self_loading_sel; /* 46 Selector used for self-loading apps. */ - LPDOSTASK lpDosTask; - LPVOID dos_image; /* pointer to DOS memory (for DOS apps) */ LPVOID hRsrcMap; /* HRSRC 16->32 map (for 32-bit modules) */ } NE_MODULE; diff --git a/msdos/int2f.c b/msdos/int2f.c index 757fd1c2034..ff620506faa 100644 --- a/msdos/int2f.c +++ b/msdos/int2f.c @@ -10,6 +10,7 @@ #include "config.h" #include "wine/winbase16.h" +#include "dosexe.h" #include "drive.h" #include "miscemu.h" #include "module.h" @@ -18,7 +19,7 @@ #include "debugtools.h" #include "cdrom.h" -DEFAULT_DEBUG_CHANNEL(int) +DEFAULT_DEBUG_CHANNEL(int); /* base WPROCS.DLL ordinal number for VxDs */ #define VXD_BASE 400