Changeset 3567 for trunk/kStuff/kLdr/kLdrModMZ.h
- Timestamp:
- Aug 27, 2007, 9:54:05 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kLdr/kLdrModMZ.h
r3537 r3567 10 10 typedef struct _IMAGE_DOS_HEADER 11 11 { 12 uint16_te_magic;13 uint16_te_cblp;14 uint16_te_cp;15 uint16_te_crlc;16 uint16_te_cparhdr;17 uint16_te_minalloc;18 uint16_te_maxalloc;19 uint16_te_ss;20 uint16_te_sp;21 uint16_te_csum;22 uint16_te_ip;23 uint16_te_cs;24 uint16_te_lfarlc;25 uint16_te_ovno;26 uint16_te_res[4];27 uint16_te_oemid;28 uint16_te_oeminfo;29 uint16_te_res2[10];30 uint32_te_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; 31 31 } IMAGE_DOS_HEADER; 32 32 typedef IMAGE_DOS_HEADER *PIMAGE_DOS_HEADER;
Note:
See TracChangeset
for help on using the changeset viewer.