From 3161deb4b53f4683624ebd93d3d0945f4ed92576 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 19 Nov 2016 12:34:42 -0500 Subject: PE format: union pe_import_lookup_item [and co.] --> union pe_import_lookup. --- include/perk/perk.h | 2 +- include/perk/perk_meta.h | 6 +++--- include/perk/perk_structs.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'include/perk') diff --git a/include/perk/perk.h b/include/perk/perk.h index a6ef8ec..81d396d 100644 --- a/include/perk/perk.h +++ b/include/perk/perk.h @@ -206,7 +206,7 @@ perk_api int pe_read_import_header (const struct pe_import_hdr *, struct pe_me perk_api int pe_read_coff_symbol (const struct pe_coff_symbol *, struct pe_meta_coff_symbol *, const struct pe_meta_coff_file_hdr *, void * base); -perk_api int pe_read_import_lookup (const union pe_import_lookup_item *, struct pe_meta_import_lookup_item *, +perk_api int pe_read_import_lookup (const union pe_import_lookup *, struct pe_meta_import_lookup *, uint32_t magic); #ifdef __cplusplus diff --git a/include/perk/perk_meta.h b/include/perk/perk_meta.h index 68e722b..ea55b51 100644 --- a/include/perk/perk_meta.h +++ b/include/perk/perk_meta.h @@ -220,7 +220,7 @@ union pe_meta_export_addr_tbl { /* image: import table entry lookup item */ -struct pe_meta_import_lookup_item { +struct pe_meta_import_lookup { union { uint64_t import_lookup_entry_64; uint32_t import_lookup_entry_32; @@ -243,8 +243,8 @@ struct pe_meta_import_hdr { uint32_t import_addr_tbl_rva; uint32_t count; char * name; - struct pe_meta_import_lookup_item * items; - union pe_import_lookup_item * aitems; + struct pe_meta_import_lookup * items; + union pe_import_lookup * aitems; }; diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h index 64c83b0..1eaf8a7 100644 --- a/include/perk/perk_structs.h +++ b/include/perk/perk_structs.h @@ -264,7 +264,7 @@ union pe_raw_export_addr_tbl { }; -union pe_import_lookup_item { +union pe_import_lookup { unsigned char import_lookup_entry_64 [0x08]; /* 0x00 */ unsigned char import_lookup_entry_32 [0x04]; /* 0x00 */ unsigned char hint_name_tbl_rva [0x04]; /* 0x00 */ -- cgit v1.2.3