diff options
author | midipix <writeonce@midipix.org> | 2016-12-02 17:34:58 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-12-02 17:34:58 -0500 |
commit | 4dc3a41d1a3743c8038277568ea9bc21ae640308 (patch) | |
tree | 6d4fad73089043616378272eb09084d9a3fb7615 /include | |
parent | 00e3d8bdf6c4ac8e5f12ea1e738d4c114931dfb2 (diff) | |
download | perk-4dc3a41d1a3743c8038277568ea9bc21ae640308.tar.bz2 perk-4dc3a41d1a3743c8038277568ea9bc21ae640308.tar.xz |
struct pe_raw_import_hdr: fix logical position within perk_structs.h.
Diffstat (limited to 'include')
-rw-r--r-- | include/perk/perk_structs.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h index 9cc687e..f7752ff 100644 --- a/include/perk/perk_structs.h +++ b/include/perk/perk_structs.h @@ -264,14 +264,6 @@ union pe_raw_export_addr_tbl { }; -union pe_raw_import_lookup { - unsigned char ii_import_lookup_entry_64 [0x08]; /* 0x00 */ - unsigned char ii_import_lookup_entry_32 [0x04]; /* 0x00 */ - unsigned char ii_hint_name_tbl_rva [0x04]; /* 0x00 */ - unsigned char ii_ordinal_number [0x02]; /* 0x00 */ -}; - - struct pe_raw_import_hdr { unsigned char ih_import_lookup_tbl_rva [0x04]; /* 0x00 */ unsigned char ih_time_date_stamp [0x04]; /* 0x04 */ @@ -281,6 +273,14 @@ struct pe_raw_import_hdr { }; +union pe_raw_import_lookup { + unsigned char ii_import_lookup_entry_64 [0x08]; /* 0x00 */ + unsigned char ii_import_lookup_entry_32 [0x04]; /* 0x00 */ + unsigned char ii_hint_name_tbl_rva [0x04]; /* 0x00 */ + unsigned char ii_ordinal_number [0x02]; /* 0x00 */ +}; + + struct pe_raw_hint_name_entry { unsigned char ii_hint [0x02]; /* 0x00 */ unsigned char ii_name [0x02]; /* 0x02 */ |