diff options
author | midipix <writeonce@midipix.org> | 2018-11-17 21:09:41 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-20 20:25:17 -0500 |
commit | 4b8f0434515ec0ad9f24347e1da08fa092f12e37 (patch) | |
tree | dedc8ed78562b9b3f849b556d14a858943b26e58 | |
parent | 8f30d9ab0402bb17814059c9e8df809c36edb437 (diff) | |
download | perk-4b8f0434515ec0ad9f24347e1da08fa092f12e37.tar.bz2 perk-4b8f0434515ec0ad9f24347e1da08fa092f12e37.tar.xz |
perk_structs.h: added struct pe_raw_import_name (dummy definition).
-rw-r--r-- | include/perk/perk_structs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h index 5cf49ae..094dae6 100644 --- a/include/perk/perk_structs.h +++ b/include/perk/perk_structs.h @@ -291,6 +291,11 @@ struct pe_raw_import_hdr { }; +struct pe_raw_import_name { + unsigned char ih_name [0x01]; /* 0x00 */ +}; + + union pe_raw_import_lookup { unsigned char ii_import_lookup_entry_64 [0x08]; /* 0x00 */ unsigned char ii_import_lookup_entry_32 [0x04]; /* 0x00 */ |