Ignore:
Timestamp:
Aug 27, 2007, 9:54:05 PM (18 years ago)
Author:
bird
Message:

Use the new type system.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/kLdr/kLdrModMZ.h

    r3537 r3567  
    1010typedef struct _IMAGE_DOS_HEADER
    1111{
    12     uint16_t   e_magic;
    13     uint16_t   e_cblp;
    14     uint16_t   e_cp;
    15     uint16_t   e_crlc;
    16     uint16_t   e_cparhdr;
    17     uint16_t   e_minalloc;
    18     uint16_t   e_maxalloc;
    19     uint16_t   e_ss;
    20     uint16_t   e_sp;
    21     uint16_t   e_csum;
    22     uint16_t   e_ip;
    23     uint16_t   e_cs;
    24     uint16_t   e_lfarlc;
    25     uint16_t   e_ovno;
    26     uint16_t   e_res[4];
    27     uint16_t   e_oemid;
    28     uint16_t   e_oeminfo;
    29     uint16_t   e_res2[10];
    30     uint32_t   e_lfanew;
     12    KU16       e_magic;
     13    KU16       e_cblp;
     14    KU16       e_cp;
     15    KU16       e_crlc;
     16    KU16       e_cparhdr;
     17    KU16       e_minalloc;
     18    KU16       e_maxalloc;
     19    KU16       e_ss;
     20    KU16       e_sp;
     21    KU16       e_csum;
     22    KU16       e_ip;
     23    KU16       e_cs;
     24    KU16       e_lfarlc;
     25    KU16       e_ovno;
     26    KU16       e_res[4];
     27    KU16       e_oemid;
     28    KU16       e_oeminfo;
     29    KU16       e_res2[10];
     30    KU32       e_lfanew;
    3131} IMAGE_DOS_HEADER;
    3232typedef IMAGE_DOS_HEADER *PIMAGE_DOS_HEADER;
Note: See TracChangeset for help on using the changeset viewer.