summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/perk/perk.h1
-rw-r--r--include/perk/perk_meta.h8
2 files changed, 9 insertions, 0 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h
index af63b33..895e4a8 100644
--- a/include/perk/perk.h
+++ b/include/perk/perk.h
@@ -193,6 +193,7 @@ perk_api int pe_get_expsym_by_name (const struct pe_image_meta *, const char *
perk_api int pe_get_expsym_by_index (const struct pe_image_meta *, unsigned index, struct pe_expsym * optional);
/* info api */
+perk_api int pe_get_image_subtype (const struct pe_image_meta *, struct pe_info_string * optional);
perk_api int pe_get_image_subsystem (const struct pe_image_meta *, struct pe_info_string * optional);
perk_api int pe_get_image_framework (const struct pe_image_meta *, struct pe_info_string * optional);
diff --git a/include/perk/perk_meta.h b/include/perk/perk_meta.h
index fc8c268..d39e652 100644
--- a/include/perk/perk_meta.h
+++ b/include/perk/perk_meta.h
@@ -7,6 +7,14 @@ extern "C" {
#include <stdint.h>
+enum pe_subtype {
+ PE_SUBTYPE_UNRECOGNIZED,
+ PE_SUBTYPE_DLL,
+ PE_SUBTYPE_EXE,
+ PE_SUBTYPE_OBJ,
+ PE_SUBTYPE_CAP
+};
+
enum pe_framework {
PE_FRAMEWORK_UNKNOWN,
PE_FRAMEWORK_FREESTD,