home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v5.zip / TOOLKT21 / CPLUS / OS2H / NEWEXE.H < prev    next >
C/C++ Source or Header  |  1993-05-03  |  21KB  |  490 lines

  1. /*static char *SCCSID = "@(#)newexe.h    6.3 92/03/15";*/
  2. /*
  3.  *      SCCSID = @(#)newexe.h    6.3 92/03/15
  4.  *
  5.  *  Title
  6.  *
  7.  *      newexe.h
  8.  *      (C) Copyright IBM Corp 1984-1992
  9.  *      (C) Copyright Microsoft Corp 1984-1987
  10.  *
  11.  *  Description
  12.  *
  13.  *      Data structure definitions for the DOS 4.0/Windows 2.0/OS-2
  14.  *      executable file format.  Includes WLO definitions.
  15.  *
  16.  */
  17.  
  18. #pragma info( none )
  19.    #ifndef __CHKHDR__
  20.       #pragma info( none )
  21.    #endif
  22. #pragma info( restore )
  23. #ifdef __cplusplus
  24.       extern "C" {
  25. #endif
  26.  
  27. #ifndef __NEWEXE__
  28. #define __NEWEXE__
  29.  
  30.  
  31.     /*_________________________________________________________________*
  32.      |                                                                 |
  33.      |                                                                 |
  34.      |  DOS3 .EXE FILE HEADER DEFINITION                               |
  35.      |                                                                 |
  36.      |_________________________________________________________________|
  37.      *                                                                 */
  38.  
  39.  
  40. #define EMAGIC          0x5A4D          /* Old magic number */
  41. #define ENEWEXE         sizeof(struct exe_hdr)
  42.                                         /* Value of E_LFARLC for new .EXEs */
  43. #define ENEWHDR         0x003C          /* Offset in old hdr. of ptr. to new */
  44. #define ERESWDS         0x0010          /* No. of reserved words (OLD) */
  45. #define ERES1WDS        0x0004          /* No. of reserved words in e_res */
  46. #define ERES2WDS        0x000A          /* No. of reserved words in e_res2 */
  47. #define ECP             0x0004          /* Offset in struct of E_CP */
  48. #define ECBLP           0x0002          /* Offset in struct of E_CBLP */
  49. #define EMINALLOC       0x000A          /* Offset in struct of E_MINALLOC */
  50.  
  51. struct exe_hdr                          /* DOS 1, 2, 3 .EXE header */
  52.   {
  53.     unsigned short      e_magic;        /* Magic number */
  54.     unsigned short      e_cblp;         /* Bytes on last page of file */
  55.     unsigned short      e_cp;           /* Pages in file */
  56.     unsigned short      e_crlc;         /* Relocations */
  57.     unsigned short      e_cparhdr;      /* Size of header in paragraphs */
  58.     unsigned short      e_minalloc;     /* Minimum extra paragraphs needed */
  59.     unsigned short      e_maxalloc;     /* Maximum extra paragraphs needed */
  60.     unsigned short      e_ss;           /* Initial (relative) SS value */
  61.     unsigned short      e_sp;           /* Initial SP value */
  62.     unsigned short      e_csum;         /* Checksum */
  63.     unsigned short      e_ip;           /* Initial IP value */
  64.     unsigned short      e_cs;           /* Initial (relative) CS value */
  65.     unsigned short      e_lfarlc;       /* File address of relocation table */
  66.     unsigned short      e_ovno;         /* Overlay number */
  67.     unsigned short      e_res[ERES1WDS];/* Reserved words */
  68.     unsigned short      e_oemid;        /* OEM identifier (for e_oeminfo) */
  69.     unsigned short      e_oeminfo;      /* OEM information; e_oemid specific */
  70.     unsigned short      e_res2[ERES2WDS];/* Reserved words */
  71.     long                e_lfanew;       /* File address of new exe header */
  72.   };
  73.  
  74. #define E_MAGIC(x)      (x).e_magic
  75. #define E_CBLP(x)       (x).e_cblp
  76. #define E_CP(x)         (x).e_cp
  77. #define E_CRLC(x)       (x).e_crlc
  78. #define E_CPARHDR(x)    (x).e_cparhdr
  79. #define E_MINALLOC(x)   (x).e_minalloc
  80. #define E_MAXALLOC(x)   (x).e_maxalloc
  81. #define E_SS(x)         (x).e_ss
  82. #define E_SP(x)         (x).e_sp
  83. #define E_CSUM(x)       (x).e_csum
  84. #define E_IP(x)         (x).e_ip
  85. #define E_CS(x)         (x).e_cs
  86. #define E_LFARLC(x)     (x).e_lfarlc
  87. #define E_OVNO(x)       (x).e_ovno
  88. #define E_RES(x)        (x).e_res
  89. #define E_OEMID(x)      (x).e_oemid
  90. #define E_OEMINFO(x)    (x).e_oeminfo
  91. #define E_RES2(x)       (x).e_res2
  92. #define E_LFANEW(x)     (x).e_lfanew
  93.  
  94.  
  95.     /*_________________________________________________________________*
  96.      |                                                                 |
  97.      |                                                                 |
  98.      |  OS/2 & WINDOWS .EXE FILE HEADER DEFINITION - 286 version       |
  99.      |                                                                 |
  100.      |_________________________________________________________________|
  101.      *                                                                 */
  102.  
  103. #define NEMAGIC         0x454E          /* New magic number */
  104. #define NERESBYTES      8               /* Eight bytes reserved (now) */
  105. #define NECRC           8               /* Offset into new header of NE_CRC */
  106.  
  107. struct new_exe                          /* New .EXE header */
  108.   {
  109.     unsigned short      ne_magic;       /* Magic number NE_MAGIC */
  110.     unsigned char       ne_ver;         /* Version number */
  111.     unsigned char       ne_rev;         /* Revision number */
  112.     unsigned short      ne_enttab;      /* Offset of Entry Table */
  113.     unsigned short      ne_cbenttab;    /* Number of bytes in Entry Table */
  114.     long                ne_crc;         /* Checksum of whole file */
  115.     unsigned short      ne_flags;       /* Flag word */
  116.     unsigned short      ne_autodata;    /* Automatic data segment number */
  117.     unsigned short      ne_heap;        /* Initial heap allocation */
  118.     unsigned short      ne_stack;       /* Initial stack allocation */
  119.     long                ne_csip;        /* Initial CS:IP setting */
  120.     long                ne_sssp;        /* Initial SS:SP setting */
  121.     unsigned short      ne_cseg;        /* Count of file segments */
  122.     unsigned short      ne_cmod;        /* Entries in Module Reference Table */
  123.     unsigned short      ne_cbnrestab;   /* Size of non-resident name table */
  124.     unsigned short      ne_segtab;      /* Offset of Segment Table */
  125.     unsigned short      ne_rsrctab;     /* Offset of Resource Table */
  126.     unsigned short      ne_restab;      /* Offset of resident name table */
  127.     unsigned short      ne_modtab;      /* Offset of Module Reference Table */
  128.     unsigned short      ne_imptab;      /* Offset of Imported Names Table */
  129.     long                ne_nrestab;     /* Offset of Non-resident Names Table */
  130.     unsigned short      ne_cmovent;     /* Count of movable entries */
  131.     unsigned short      ne_align;       /* Segment alignment shift count */
  132.     unsigned short      ne_cres;        /* Count of resource entries */
  133.     unsigned char       ne_exetyp;      /* Target operating system */
  134.     unsigned char       ne_flagsothers; /* Other .EXE flags */
  135.     char                ne_res[NERESBYTES];
  136.                                         /* Pad structure to 64 bytes */
  137.   };
  138.  
  139. #define NE_MAGIC(x)         (x).ne_magic
  140. #define NE_VER(x)           (x).ne_ver
  141. #define NE_REV(x)           (x).ne_rev
  142. #define NE_ENTTAB(x)        (x).ne_enttab
  143. #define NE_CBENTTAB(x)      (x).ne_cbenttab
  144. #define NE_CRC(x)           (x).ne_crc
  145. #define NE_FLAGS(x)         (x).ne_flags
  146. #define NE_AUTODATA(x)      (x).ne_autodata
  147. #define NE_HEAP(x)          (x).ne_heap
  148. #define NE_STACK(x)         (x).ne_stack
  149. #define NE_CSIP(x)          (x).ne_csip
  150. #define NE_SSSP(x)          (x).ne_sssp
  151. #define NE_CSEG(x)          (x).ne_cseg
  152. #define NE_CMOD(x)          (x).ne_cmod
  153. #define NE_CBNRESTAB(x)     (x).ne_cbnrestab
  154. #define NE_SEGTAB(x)        (x).ne_segtab
  155. #define NE_RSRCTAB(x)       (x).ne_rsrctab
  156. #define NE_RESTAB(x)        (x).ne_restab
  157. #define NE_MODTAB(x)        (x).ne_modtab
  158. #define NE_IMPTAB(x)        (x).ne_imptab
  159. #define NE_NRESTAB(x)       (x).ne_nrestab
  160. #define NE_CMOVENT(x)       (x).ne_cmovent
  161. #define NE_ALIGN(x)         (x).ne_align
  162. #define NE_CRES(x)          (x).ne_cres
  163. #define NE_RES(x)           (x).ne_res
  164. #define NE_EXETYP(x)        (x).ne_exetyp
  165. #define NE_FLAGSOTHERS(x)   (x).ne_flagsothers
  166.  
  167. #define NE_USAGE(x)     (WORD)*((WORD *)(x)+1)
  168. #define NE_PNEXTEXE(x)  (WORD)(x).ne_cbenttab
  169. #define NE_ONEWEXE(x)   (WORD)(x).ne_crc
  170. #define NE_PFILEINFO(x) (WORD)((DWORD)(x).ne_crc >> 16)
  171.  
  172.  
  173. /*
  174.  *  Target operating systems
  175.  */
  176.  
  177. #define NE_UNKNOWN      0x0             /* Unknown (any "new-format" OS) */
  178. #define NE_OS2          0x1             /* OS/2 (default)  */
  179. #define NE_WINDOWS      0x2             /* Windows */
  180. #define NE_DOS4         0x3             /* DOS 4.x */
  181. #define NE_DEV386       0x4             /* Windows 386 */
  182.  
  183.  
  184. /*
  185.  *  Format of NE_FLAGS(x):
  186.  *
  187.  *  p                                   Not-a-process
  188.  *   x                                  Unused
  189.  *    e                                 Errors in image
  190.  *     x                                Unused
  191.  *      b                               Bound Family/API
  192.  *       ttt                            Application type
  193.  *          f                           Floating-point instructions
  194.  *           3                          386 instructions
  195.  *            2                         286 instructions
  196.  *             0                        8086 instructions
  197.  *              P                       Protected mode only
  198.  *               p                      Per-process library initialization
  199.  *                i                     Instance data
  200.  *                 s                    Solo data
  201.  */
  202. #define NENOTP          0x8000          /* Not a process */
  203. #define NEIERR          0x2000          /* Errors in image */
  204. #define NEBOUND         0x0800          /* Bound Family/API */
  205. #define NEAPPTYP        0x0700          /* Application type mask */
  206. #define NENOTWINCOMPAT  0x0100          /* Not compatible with P.M. Windowing */
  207. #define NEWINCOMPAT     0x0200          /* Compatible with P.M. Windowing */
  208. #define NEWINAPI        0x0300          /* Uses P.M. Windowing API */
  209. #define NEFLTP          0x0080          /* Floating-point instructions */
  210. #define NEI386          0x0040          /* 386 instructions */
  211. #define NEI286          0x0020          /* 286 instructions */
  212. #define NEI086          0x0010          /* 8086 instructions */
  213. #define NEPROT          0x0008          /* Runs in protected mode only */
  214. #define NEPPLI          0x0004          /* Per-Process Library Initialization */
  215. #define NEINST          0x0002          /* Instance data */
  216. #define NESOLO          0x0001          /* Solo data */
  217.  
  218. /*
  219.  *  Format of NE_FLAGSOTHERS(x):
  220.  *
  221.  *      7 6 5 4 3 2 1 0  - bit no
  222.  *      |         | | |
  223.  *      |         | | +---------------- Support for long file names
  224.  *      |         | +------------------ Windows 2.x app runs in prot mode
  225.  *      |         +-------------------- Windows 2.x app gets prop. font
  226.  *      +------------------------------ WLO appl on OS/2 (markwlo.exe)
  227.  *
  228.  */
  229.  
  230. #define NELONGNAMES     0x01
  231. #define NEWINISPROT     0x02
  232. #define NEWINGETPROPFON 0x04
  233. #define NEWLOAPPL       0x80
  234.  
  235.  
  236.  
  237. struct new_seg                          /* New .EXE segment table entry */
  238.   {
  239.     unsigned short      ns_sector;      /* File sector of start of segment */
  240.     unsigned short      ns_cbseg;       /* Number of bytes in file */
  241.     unsigned short      ns_flags;       /* Attribute flags */
  242.     unsigned short      ns_minalloc;    /* Minimum allocation in bytes */
  243.   };
  244.  
  245. #define NS_SECTOR(x)    (x).ns_sector
  246. #define NS_CBSEG(x)     (x).ns_cbseg
  247. #define NS_FLAGS(x)     (x).ns_flags
  248. #define NS_MINALLOC(x)  (x).ns_minalloc
  249.  
  250.  
  251. /*
  252.  *  Format of NS_FLAGS(x)
  253.  *
  254.  *  Flag word has the following format:
  255.  *
  256.  *      15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0  - bit no
  257.  *          |  |  |  |  | | | | | | | | | | |
  258.  *          |  |  |  |  | | | | | | | | +-+-+--- Segment type DATA/CODE
  259.  *          |  |  |  |  | | | | | | | +--------- Iterated segment
  260.  *          |  |  |  |  | | | | | | +----------- Movable segment
  261.  *          |  |  |  |  | | | | | +------------- Segment can be shared
  262.  *          |  |  |  |  | | | | +--------------- Preload segment
  263.  *          |  |  |  |  | | | +----------------- Execute/read-only for code/data segment
  264.  *          |  |  |  |  | | +------------------- Segment has relocations
  265.  *          |  |  |  |  | +--------------------- Code conforming/Data is expand down
  266.  *          |  |  |  +--+----------------------- I/O privilege level
  267.  *          |  |  +----------------------------- Discardable segment
  268.  *          |  +-------------------------------- 32-bit code segment
  269.  *          +----------------------------------- Huge segment/GDT allocation requested
  270.  *
  271.  */
  272.  
  273. #define NSTYPE          0x0007          /* Segment type mask */
  274.  
  275. #if (EXE386 == 0)
  276. #define NSCODE          0x0000          /* Code segment */
  277. #define NSDATA          0x0001          /* Data segment */
  278. #define NSITER          0x0008          /* Iterated segment flag */
  279. #define NSMOVE          0x0010          /* Movable segment flag */
  280. #define NSSHARED        0x0020          /* Shared segment flag */
  281. #define NSPRELOAD       0x0040          /* Preload segment flag */
  282. #define NSEXRD          0x0080          /* Execute-only (code segment), or
  283.                                         *  read-only (data segment)
  284.                                         */
  285. #define NSRELOC         0x0100          /* Segment has relocations */
  286. #define NSCONFORM       0x0200          /* Conforming segment */
  287. #define NSEXPDOWN       0x0200          /* Data segment is expand down */
  288. #define NSDPL           0x0C00          /* I/O privilege level (286 DPL bits) */
  289. #define SHIFTDPL        10              /* Left shift count for SEGDPL field */
  290. #define NSDISCARD       0x1000          /* Segment is discardable */
  291. #define NS32BIT         0x2000          /* 32-bit code segment */
  292. #define NSHUGE          0x4000          /* Huge memory segment, length of
  293.                                          * segment and minimum allocation
  294.                                          * size are in segment sector units
  295.                                          */
  296. #define NSGDT           0x8000          /* GDT allocation requested */
  297.  
  298. #define NSPURE          NSSHARED        /* For compatibility */
  299.  
  300. #define NSALIGN 9       /* Segment data aligned on 512 byte boundaries */
  301.  
  302. #define NSLOADED    0x0004      /* ns_sector field contains memory addr */
  303. #endif
  304.  
  305.  
  306. struct new_segdata                      /* Segment data */
  307.   {
  308.     union
  309.       {
  310.         struct
  311.           {
  312.             unsigned short      ns_niter;       /* number of iterations */
  313.             unsigned short      ns_nbytes;      /* number of bytes */
  314.             char                ns_iterdata;    /* iterated data bytes */
  315.           } ns_iter;
  316.         struct
  317.           {
  318.             char                ns_data;        /* data bytes */
  319.           } ns_noniter;
  320.       } ns_union;
  321.   };
  322.  
  323. struct new_rlcinfo                      /* Relocation info */
  324.   {
  325.     unsigned short      nr_nreloc;      /* number of relocation items that */
  326.   };                                    /* follow */
  327.  
  328. #pragma pack(1)
  329.  
  330.  
  331. struct new_rlc                          /* Relocation item */
  332.   {
  333.     char                nr_stype;       /* Source type */
  334.     char                nr_flags;       /* Flag byte */
  335.     unsigned short      nr_soff;        /* Source offset */
  336.     union
  337.       {
  338.         struct
  339.           {
  340.             char        nr_segno;       /* Target segment number */
  341.             char        nr_res;         /* Reserved */
  342.             unsigned short nr_entry;    /* Target Entry Table offset */
  343.           }             nr_intref;      /* Internal reference */
  344.         struct
  345.           {
  346.             unsigned short nr_mod;      /* Index into Module Reference Table */
  347.             unsigned short nr_proc;     /* Procedure ordinal or name offset */
  348.           }             nr_import;      /* Import */
  349.         struct
  350.           {
  351.             unsigned short nr_ostype;   /* OSFIXUP type */
  352.             unsigned short nr_osres;    /* reserved */
  353.           }             nr_osfix;       /* Operating system fixup */
  354.       }                 nr_union;       /* Union */
  355.   };
  356.  
  357. #pragma pack()
  358.  
  359.  
  360. #define NR_STYPE(x)     (x).nr_stype
  361. #define NR_FLAGS(x)     (x).nr_flags
  362. #define NR_SOFF(x)      (x).nr_soff
  363. #define NR_SEGNO(x)     (x).nr_union.nr_intref.nr_segno
  364. #define NR_RES(x)       (x).nr_union.nr_intref.nr_res
  365. #define NR_ENTRY(x)     (x).nr_union.nr_intref.nr_entry
  366. #define NR_MOD(x)       (x).nr_union.nr_import.nr_mod
  367. #define NR_PROC(x)      (x).nr_union.nr_import.nr_proc
  368. #define NR_OSTYPE(x)    (x).nr_union.nr_osfix.nr_ostype
  369. #define NR_OSRES(x)     (x).nr_union.nr_osfix.nr_osres
  370.  
  371.  
  372.  
  373. /*
  374.  *  Format of NR_STYPE(x) and R32_STYPE(x):
  375.  *
  376.  *       7 6 5 4 3 2 1 0  - bit no
  377.  *               | | | |
  378.  *               +-+-+-+--- source type
  379.  *
  380.  */
  381.  
  382. #define NRSTYP          0x0f            /* Source type mask */
  383. #define NRSBYT          0x00            /* lo byte (8-bits)*/
  384. #define NRSSEG          0x02            /* 16-bit segment (16-bits) */
  385. #define NRSPTR          0x03            /* 16:16 pointer (32-bits) */
  386. #define NRSOFF          0x05            /* 16-bit offset (16-bits) */
  387. #define NRPTR48         0x06            /* 16:32 pointer (48-bits) */
  388. #define NROFF32         0x07            /* 32-bit offset (32-bits) */
  389. #define NRSOFF32        0x08            /* 32-bit self-relative offset (32-bits) */
  390.  
  391.  
  392. /*
  393.  *  Format of NR_FLAGS(x) and R32_FLAGS(x):
  394.  *
  395.  *       7 6 5 4 3 2 1 0  - bit no
  396.  *                 | | |
  397.  *                 | +-+--- Reference type
  398.  *                 +------- Additive fixup
  399.  */
  400.  
  401. #define NRADD           0x04            /* Additive fixup */
  402. #define NRRTYP          0x03            /* Reference type mask */
  403. #define NRRINT          0x00            /* Internal reference */
  404. #define NRRORD          0x01            /* Import by ordinal */
  405. #define NRRNAM          0x02            /* Import by name */
  406. #define NRROSF          0x03            /* Operating system fixup */
  407.  
  408.  
  409. #if (EXE386 == 0)
  410.  
  411. /* Resource type or name string */
  412. struct rsrc_string
  413.     {
  414.     char rs_len;            /* number of bytes in string */
  415.     char rs_string[ 1 ];    /* text of string */
  416.     };
  417.  
  418. #define RS_LEN( x )    (x).rs_len
  419. #define RS_STRING( x ) (x).rs_string
  420.  
  421. /* Resource type information block */
  422. struct rsrc_typeinfo
  423.     {
  424.     unsigned short rt_id;
  425.     unsigned short rt_nres;
  426.     long rt_proc;
  427.     };
  428.  
  429. #define RT_ID( x )   (x).rt_id
  430. #define RT_NRES( x ) (x).rt_nres
  431. #define RT_PROC( x ) (x).rt_proc
  432.  
  433. /* Resource name information block */
  434. struct rsrc_nameinfo
  435.     {
  436.     /* The following two fields must be shifted left by the value of  */
  437.     /* the rs_align field to compute their actual value.  This allows */
  438.     /* resources to be larger than 64k, but they do not need to be    */
  439.     /* aligned on 512 byte boundaries, the way segments are           */
  440.     unsigned short rn_offset;   /* file offset to resource data */
  441.     unsigned short rn_length;   /* length of resource data */
  442.     unsigned short rn_flags;    /* resource flags */
  443.     unsigned short rn_id;       /* resource name id */
  444.     unsigned short rn_handle;   /* If loaded, then global handle */
  445.     unsigned short rn_usage;    /* Initially zero.  Number of times */
  446.                                 /* the handle for this resource has */
  447.                                 /* been given out */
  448.     };
  449.  
  450. #define RN_OFFSET( x ) (x).rn_offset
  451. #define RN_LENGTH( x ) (x).rn_length
  452. #define RN_FLAGS( x )  (x).rn_flags
  453. #define RN_ID( x )     (x).rn_id
  454. #define RN_HANDLE( x ) (x).rn_handle
  455. #define RN_USAGE( x )  (x).rn_usage
  456.  
  457. #define RSORDID     0x8000      /* if high bit of ID set then integer id */
  458.                                 /* otherwise ID is offset of string from
  459.                                    the beginning of the resource table */
  460.  
  461.                                 /* Ideally these are the same as the */
  462.                                 /* corresponding segment flags */
  463. #define RNMOVE      0x0010      /* Moveable resource */
  464. #define RNPURE      0x0020      /* Pure (read-only) resource */
  465. #define RNPRELOAD   0x0040      /* Preloaded resource */
  466. #define RNDISCARD   0xF000      /* Discard priority level for resource */
  467.  
  468. /* Resource table */
  469. struct new_rsrc
  470.     {
  471.     unsigned short rs_align;    /* alignment shift count for resources */
  472.     struct rsrc_typeinfo rs_typeinfo;
  473.     };
  474.  
  475. #define RS_ALIGN( x ) (x).rs_align
  476.  
  477.  
  478. #endif /* NOT EXE386 */
  479.  
  480. #endif /* __NEWEXE__ */
  481.  
  482. #ifdef __cplusplus
  483.         }
  484. #endif
  485. #pragma info( none )
  486.    #ifndef __CHKHDR__
  487.       #pragma info( restore )
  488.    #endif
  489. #pragma info( restore )
  490.