summaryrefslogtreecommitdiff
path: root/src/format/symbol.h
diff options
context:
space:
mode:
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;