summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-11-02 20:31:24 -0500
committermidipix <writeonce@midipix.org>2018-11-20 20:25:13 -0500
commit867bfb7742d38371154f89b5afa97719a106d7b8 (patch)
tree63c68b75260b0a69ec24ea952fbc5a443333cc34 /include
parent9eb746f818456defd5f651c9d6d38a65fbaecd60 (diff)
downloadperk-867bfb7742d38371154f89b5afa97719a106d7b8.tar.bz2
perk-867bfb7742d38371154f89b5afa97719a106d7b8.tar.xz
struct pe_image_meta: added the pe_abi, pe_subtype, and pe_framework members.
Diffstat (limited to 'include')
-rw-r--r--include/perk/perk.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h
index bc6ea8f..d5ede02 100644
--- a/include/perk/perk.h
+++ b/include/perk/perk.h
@@ -117,6 +117,10 @@ struct pe_image_meta {
struct pe_meta_sec_hdr * h_dsosyms;
struct pe_meta_sec_hdr * h_dsostrs;
struct pe_meta_sec_hdr * h_dsodata;
+
+ enum pe_abi m_abi;
+ enum pe_subtype m_subtype;
+ enum pe_framework m_framework;
};
struct pe_source_version {