summaryrefslogtreecommitdiff
path: root/src/format/symbol.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-04-05 22:59:31 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-04-05 23:11:48 (GMT)
commitb0347ca45a08ac63bc6dd6f244b046c6d19a6cdd (patch)
tree9af1ec9901ddcf696bd3297633faf9fb46712396 /src/format/symbol.h
parentcf0b5d5f07e8102f2c9a04012bf29cabda9d85e4 (diff)
Build a partial working support for the PE format.
Diffstat (limited to 'src/format/symbol.h')
-rw-r--r--src/format/symbol.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/format/symbol.h b/src/format/symbol.h
index 577eb83..5235410 100644
--- a/src/format/symbol.h
+++ b/src/format/symbol.h
@@ -63,12 +63,16 @@ typedef enum _SymbolStatus
} SymbolStatus;
/* Indications supplémentaires liées aux symboles */
+
+#define SFL_USER_BIT 1
+
typedef enum _SymbolFlag
{
SFL_NONE = (0 << 0), /* Aucune propriété */
SFL_HAS_NM_PREFIX = (1 << 0), /* Indication de nature */
- SFL_MASK = (1 << 1) - 1, /* Indication de nature */
+ SFL_LOW_USER = (1 << SFL_USER_BIT),/* Premier bit disponible */
+ SFL_HIGH_USER = (1 << 7), /* Dernier bit disponible */
} SymbolFlag;