diff options
author | midipix <writeonce@midipix.org> | 2016-11-17 21:29:57 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-17 21:29:57 -0500 |
commit | edaa40ccaf3349464be94d0d981b7826af04aaaa (patch) | |
tree | 22e8e36d726cf86f4a80aad22787bf1a3ddf219e /include | |
parent | a24b2d75a352eafe620080d3c613d12245c7584d (diff) | |
download | perk-edaa40ccaf3349464be94d0d981b7826af04aaaa.tar.bz2 perk-edaa40ccaf3349464be94d0d981b7826af04aaaa.tar.xz |
reader: pe_read_coff_symbol(): initial implementation.
Diffstat (limited to 'include')
-rw-r--r-- | include/perk/perk.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h index 332ddde..5d3227a 100644 --- a/include/perk/perk.h +++ b/include/perk/perk.h @@ -204,6 +204,9 @@ perk_api int pe_read_export_header (const struct pe_export_hdr *, struct pe_me perk_api int pe_read_import_header (const struct pe_import_hdr *, struct pe_meta_import_hdr *); perk_api int pe_read_import_lookup (const union pe_import_lookup_item *, struct pe_meta_import_lookup_item *, uint32_t magic); +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); + #ifdef __cplusplus } #endif |