| 1 | /* $Id: neexe.h,v 1.2 2000-08-30 13:56:38 sandervl Exp $ */ | 
|---|
| 2 |  | 
|---|
| 3 | /* | 
|---|
| 4 | * Copyright  Robert J. Amstadt, 1993 | 
|---|
| 5 | */ | 
|---|
| 6 | #ifndef __WINE_NEEXE_H | 
|---|
| 7 | #define __WINE_NEEXE_H | 
|---|
| 8 |  | 
|---|
| 9 | #ifdef __WIN32OS2__ | 
|---|
| 10 | #ifndef _OS2WIN_H | 
|---|
| 11 | #include <win32type.h> | 
|---|
| 12 | #endif | 
|---|
| 13 | #else | 
|---|
| 14 | #include "windef.h" | 
|---|
| 15 | #endif | 
|---|
| 16 |  | 
|---|
| 17 | /* | 
|---|
| 18 | * Old MZ header for DOS programs. | 
|---|
| 19 | * We check only the magic and the e_lfanew offset to the new executable | 
|---|
| 20 | * header. | 
|---|
| 21 | */ | 
|---|
| 22 | typedef struct | 
|---|
| 23 | { | 
|---|
| 24 | WORD  e_magic;      /* 00: MZ Header signature */ | 
|---|
| 25 | WORD  e_cblp;       /* 02: Bytes on last page of file */ | 
|---|
| 26 | WORD  e_cp;         /* 04: Pages in file */ | 
|---|
| 27 | WORD  e_crlc;       /* 06: Relocations */ | 
|---|
| 28 | WORD  e_cparhdr;    /* 08: Size of header in paragraphs */ | 
|---|
| 29 | WORD  e_minalloc;   /* 0a: Minimum extra paragraphs needed */ | 
|---|
| 30 | WORD  e_maxalloc;   /* 0c: Maximum extra paragraphs needed */ | 
|---|
| 31 | WORD  e_ss;         /* 0e: Initial (relative) SS value */ | 
|---|
| 32 | WORD  e_sp;         /* 10: Initial SP value */ | 
|---|
| 33 | WORD  e_csum;       /* 12: Checksum */ | 
|---|
| 34 | WORD  e_ip;         /* 14: Initial IP value */ | 
|---|
| 35 | WORD  e_cs;         /* 16: Initial (relative) CS value */ | 
|---|
| 36 | WORD  e_lfarlc;     /* 18: File address of relocation table */ | 
|---|
| 37 | WORD  e_ovno;       /* 1a: Overlay number */ | 
|---|
| 38 | WORD  e_res[4];     /* 1c: Reserved words */ | 
|---|
| 39 | WORD  e_oemid;      /* 24: OEM identifier (for e_oeminfo) */ | 
|---|
| 40 | WORD  e_oeminfo;    /* 26: OEM information; e_oemid specific */ | 
|---|
| 41 | WORD  e_res2[10];   /* 28: Reserved words */ | 
|---|
| 42 | DWORD e_lfanew;     /* 3c: Offset to extended header */ | 
|---|
| 43 | } IMAGE_DOS_HEADER,*PIMAGE_DOS_HEADER; | 
|---|
| 44 |  | 
|---|
| 45 | #define IMAGE_DOS_SIGNATURE     0x5A4D          /* MZ */ | 
|---|
| 46 | #define IMAGE_OS2_SIGNATURE     0x454E          /* NE */ | 
|---|
| 47 | #define IMAGE_OS2_SIGNATURE_LE  0x454C          /* LE */ | 
|---|
| 48 | #define IMAGE_OS2_SIGNATURE_LX  0x584C          /* LX */ | 
|---|
| 49 | #define IMAGE_VXD_SIGNATURE     0x454C          /* LE */ | 
|---|
| 50 | #define IMAGE_NT_SIGNATURE      0x00004550      /* PE00 */ | 
|---|
| 51 |  | 
|---|
| 52 | /* | 
|---|
| 53 | * This is the Windows executable (NE) header. | 
|---|
| 54 | * the name IMAGE_OS2_HEADER is misleading, but in the SDK this way. | 
|---|
| 55 | */ | 
|---|
| 56 | typedef struct | 
|---|
| 57 | { | 
|---|
| 58 | WORD  ne_magic;             /* 00 NE signature 'NE' */ | 
|---|
| 59 | BYTE  ne_ver;               /* 02 Linker version number */ | 
|---|
| 60 | BYTE  ne_rev;               /* 03 Linker revision number */ | 
|---|
| 61 | WORD  ne_enttab;            /* 04 Offset to entry table relative to NE */ | 
|---|
| 62 | WORD  ne_cbenttab;          /* 06 Length of entry table in bytes */ | 
|---|
| 63 | LONG  ne_crc;               /* 08 Checksum */ | 
|---|
| 64 | WORD  ne_flags;             /* 0c Flags about segments in this file */ | 
|---|
| 65 | WORD  ne_autodata;          /* 0e Automatic data segment number */ | 
|---|
| 66 | WORD  ne_heap;              /* 10 Initial size of local heap */ | 
|---|
| 67 | WORD  ne_stack;             /* 12 Initial size of stack */ | 
|---|
| 68 | DWORD ne_csip;              /* 14 Initial CS:IP */ | 
|---|
| 69 | DWORD ne_sssp;              /* 18 Initial SS:SP */ | 
|---|
| 70 | WORD  ne_cseg;              /* 1c # of entries in segment table */ | 
|---|
| 71 | WORD  ne_cmod;              /* 1e # of entries in module reference tab. */ | 
|---|
| 72 | WORD  ne_cbnrestab;         /* 20 Length of nonresident-name table     */ | 
|---|
| 73 | WORD  ne_segtab;            /* 22 Offset to segment table */ | 
|---|
| 74 | WORD  ne_rsrctab;           /* 24 Offset to resource table */ | 
|---|
| 75 | WORD  ne_restab;            /* 26 Offset to resident-name table */ | 
|---|
| 76 | WORD  ne_modtab;            /* 28 Offset to module reference table */ | 
|---|
| 77 | WORD  ne_imptab;            /* 2a Offset to imported name table */ | 
|---|
| 78 | DWORD ne_nrestab;           /* 2c Offset to nonresident-name table */ | 
|---|
| 79 | WORD  ne_cmovent;           /* 30 # of movable entry points */ | 
|---|
| 80 | WORD  ne_align;             /* 32 Logical sector alignment shift count */ | 
|---|
| 81 | WORD  ne_cres;              /* 34 # of resource segments */ | 
|---|
| 82 | BYTE  ne_exetyp;            /* 36 Flags indicating target OS */ | 
|---|
| 83 | BYTE  ne_flagsothers;       /* 37 Additional information flags */ | 
|---|
| 84 | WORD  fastload_offset;      /* 38 Offset to fast load area (should be ne_pretthunks)*/ | 
|---|
| 85 | WORD  fastload_length;      /* 3a Length of fast load area (should be ne_psegrefbytes) */ | 
|---|
| 86 | WORD  ne_swaparea;          /* 3c Reserved by Microsoft */ | 
|---|
| 87 | WORD  ne_expver;            /* 3e Expected Windows version number */ | 
|---|
| 88 | } IMAGE_OS2_HEADER,*PIMAGE_OS2_HEADER; | 
|---|
| 89 |  | 
|---|
| 90 | /* | 
|---|
| 91 | * NE Header FORMAT FLAGS | 
|---|
| 92 | */ | 
|---|
| 93 | #define NE_FFLAGS_SINGLEDATA    0x0001 | 
|---|
| 94 | #define NE_FFLAGS_MULTIPLEDATA  0x0002 | 
|---|
| 95 | #define NE_FFLAGS_WIN32         0x0010 | 
|---|
| 96 | #define NE_FFLAGS_BUILTIN       0x0020  /* Wine built-in module */ | 
|---|
| 97 | #define NE_FFLAGS_FRAMEBUF      0x0100  /* OS/2 fullscreen app */ | 
|---|
| 98 | #define NE_FFLAGS_CONSOLE       0x0200  /* OS/2 console app */ | 
|---|
| 99 | #define NE_FFLAGS_GUI           0x0300  /* right, (NE_FFLAGS_FRAMEBUF | NE_FFLAGS_CONSOLE) */ | 
|---|
| 100 | #define NE_FFLAGS_SELFLOAD      0x0800 | 
|---|
| 101 | #define NE_FFLAGS_LINKERROR     0x2000 | 
|---|
| 102 | #define NE_FFLAGS_CALLWEP       0x4000 | 
|---|
| 103 | #define NE_FFLAGS_LIBMODULE     0x8000 | 
|---|
| 104 |  | 
|---|
| 105 | /* | 
|---|
| 106 | * NE Header OPERATING SYSTEM | 
|---|
| 107 | */ | 
|---|
| 108 | #define NE_OSFLAGS_UNKNOWN      0x01 | 
|---|
| 109 | #define NE_OSFLAGS_WINDOWS      0x04 | 
|---|
| 110 |  | 
|---|
| 111 | /* | 
|---|
| 112 | * NE Header ADDITIONAL FLAGS | 
|---|
| 113 | */ | 
|---|
| 114 | #define NE_AFLAGS_WIN2_PROTMODE 0x02 | 
|---|
| 115 | #define NE_AFLAGS_WIN2_PROFONTS 0x04 | 
|---|
| 116 | #define NE_AFLAGS_FASTLOAD      0x08 | 
|---|
| 117 |  | 
|---|
| 118 | /* | 
|---|
| 119 | * Segment table entry | 
|---|
| 120 | */ | 
|---|
| 121 | struct ne_segment_table_entry_s | 
|---|
| 122 | { | 
|---|
| 123 | WORD seg_data_offset;       /* Sector offset of segment data        */ | 
|---|
| 124 | WORD seg_data_length;       /* Length of segment data               */ | 
|---|
| 125 | WORD seg_flags;             /* Flags associated with this segment   */ | 
|---|
| 126 | WORD min_alloc;             /* Minimum allocation size for this     */ | 
|---|
| 127 | }; | 
|---|
| 128 |  | 
|---|
| 129 | /* | 
|---|
| 130 | * Segment Flags | 
|---|
| 131 | */ | 
|---|
| 132 | #define NE_SEGFLAGS_DATA        0x0001 | 
|---|
| 133 | #define NE_SEGFLAGS_ALLOCATED   0x0002 | 
|---|
| 134 | #define NE_SEGFLAGS_LOADED      0x0004 | 
|---|
| 135 | #define NE_SEGFLAGS_ITERATED    0x0008 | 
|---|
| 136 | #define NE_SEGFLAGS_MOVEABLE    0x0010 | 
|---|
| 137 | #define NE_SEGFLAGS_SHAREABLE   0x0020 | 
|---|
| 138 | #define NE_SEGFLAGS_PRELOAD     0x0040 | 
|---|
| 139 | #define NE_SEGFLAGS_EXECUTEONLY 0x0080 | 
|---|
| 140 | #define NE_SEGFLAGS_READONLY    0x0080 | 
|---|
| 141 | #define NE_SEGFLAGS_RELOC_DATA  0x0100 | 
|---|
| 142 | #define NE_SEGFLAGS_SELFLOAD    0x0800 | 
|---|
| 143 | #define NE_SEGFLAGS_DISCARDABLE 0x1000 | 
|---|
| 144 |  | 
|---|
| 145 | /* | 
|---|
| 146 | * Relocation table entry | 
|---|
| 147 | */ | 
|---|
| 148 | struct relocation_entry_s | 
|---|
| 149 | { | 
|---|
| 150 | BYTE address_type;  /* Relocation address type              */ | 
|---|
| 151 | BYTE relocation_type;       /* Relocation type                      */ | 
|---|
| 152 | WORD offset;                /* Offset in segment to fixup           */ | 
|---|
| 153 | WORD target1;               /* Target specification                 */ | 
|---|
| 154 | WORD target2;               /* Target specification                 */ | 
|---|
| 155 | }; | 
|---|
| 156 |  | 
|---|
| 157 | /* | 
|---|
| 158 | * Relocation address types | 
|---|
| 159 | */ | 
|---|
| 160 | #define NE_RADDR_LOWBYTE        0 | 
|---|
| 161 | #define NE_RADDR_SELECTOR       2 | 
|---|
| 162 | #define NE_RADDR_POINTER32      3 | 
|---|
| 163 | #define NE_RADDR_OFFSET16       5 | 
|---|
| 164 | #define NE_RADDR_POINTER48      11 | 
|---|
| 165 | #define NE_RADDR_OFFSET32       13 | 
|---|
| 166 |  | 
|---|
| 167 | /* | 
|---|
| 168 | * Relocation types | 
|---|
| 169 | */ | 
|---|
| 170 | #define NE_RELTYPE_INTERNAL     0 | 
|---|
| 171 | #define NE_RELTYPE_ORDINAL      1 | 
|---|
| 172 | #define NE_RELTYPE_NAME         2 | 
|---|
| 173 | #define NE_RELTYPE_OSFIXUP      3 | 
|---|
| 174 | #define NE_RELFLAG_ADDITIVE     4 | 
|---|
| 175 |  | 
|---|
| 176 | /* | 
|---|
| 177 | * Resource table structures. | 
|---|
| 178 | */ | 
|---|
| 179 | struct resource_nameinfo_s | 
|---|
| 180 | { | 
|---|
| 181 | unsigned short offset; | 
|---|
| 182 | unsigned short length; | 
|---|
| 183 | unsigned short flags; | 
|---|
| 184 | unsigned short id; | 
|---|
| 185 | HANDLE16 handle; | 
|---|
| 186 | unsigned short usage; | 
|---|
| 187 | }; | 
|---|
| 188 |  | 
|---|
| 189 | struct resource_typeinfo_s | 
|---|
| 190 | { | 
|---|
| 191 | unsigned short type_id;     /* Type identifier */ | 
|---|
| 192 | unsigned short count;       /* Number of resources of this type */ | 
|---|
| 193 | FARPROC16      resloader;   /* SetResourceHandler() */ | 
|---|
| 194 | /* | 
|---|
| 195 | * Name info array. | 
|---|
| 196 | */ | 
|---|
| 197 | }; | 
|---|
| 198 |  | 
|---|
| 199 | #define NE_RSCTYPE_ACCELERATOR          0x8009 | 
|---|
| 200 | #define NE_RSCTYPE_BITMAP               0x8002 | 
|---|
| 201 | #define NE_RSCTYPE_CURSOR               0x8001 | 
|---|
| 202 | #define NE_RSCTYPE_DIALOG               0x8005 | 
|---|
| 203 | #define NE_RSCTYPE_FONT                 0x8008 | 
|---|
| 204 | #define NE_RSCTYPE_FONTDIR              0x8007 | 
|---|
| 205 | #define NE_RSCTYPE_GROUP_CURSOR         0x800c | 
|---|
| 206 | #define NE_RSCTYPE_GROUP_ICON           0x800e | 
|---|
| 207 | #define NE_RSCTYPE_ICON                 0x8003 | 
|---|
| 208 | #define NE_RSCTYPE_MENU                 0x8004 | 
|---|
| 209 | #define NE_RSCTYPE_RCDATA               0x800a | 
|---|
| 210 | #define NE_RSCTYPE_STRING               0x8006 | 
|---|
| 211 |  | 
|---|
| 212 | #endif  /* __WINE_NEEXE_H */ | 
|---|