summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2025-06-10 20:04:36 +0000
committermidipix <writeonce@midipix.org>2025-06-10 20:04:36 +0000
commit1274f6b93b54ce1b463737d05af2088c2a2637d7 (patch)
tree2b2deba5ca5572b028268cd26389ea9bdb4e1e84
parent4816ec0a1fa54e409635b11b23531eba69ba8206 (diff)
downloadperk-1274f6b93b54ce1b463737d05af2088c2a2637d7.tar.bz2
perk-1274f6b93b54ce1b463737d05af2088c2a2637d7.tar.xz
perk_consts.h: added PE_IMAGE_WEAK_EXTERN_SEARCH_{NOLIBRARY|LIBRARY|ALIAS}.
-rw-r--r--include/perk/perk_consts.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/perk/perk_consts.h b/include/perk/perk_consts.h
index f948c26..138d706 100644
--- a/include/perk/perk_consts.h
+++ b/include/perk/perk_consts.h
@@ -368,4 +368,8 @@
#define PE_IMAGE_DATA_DIR_ORDINAL_CLR_RUNTIME_HEADER PE_ARBITRARY (0x0000000e)
#define PE_IMAGE_DATA_DIR_ORDINAL_RESERVED PE_ARBITRARY (0x0000000f)
+#define PE_IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY PE_ARBITRARY (0x00000001)
+#define PE_IMAGE_WEAK_EXTERN_SEARCH_LIBRARY PE_ARBITRARY (0x00000002)
+#define PE_IMAGE_WEAK_EXTERN_SEARCH_ALIAS PE_ARBITRARY (0x00000003)
+
#endif