diff options
Diffstat (limited to 'ident.h')
-rw-r--r-- | ident.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -14,12 +14,13 @@ #ifndef IDENT_H #define IDENT_H +#define ID_SCOPE_SHIFT 3 #define ID_SCOPE_MASK 0x07 #define ID_LOCAL 0x00 -#define ID_ATTRSET 0x04 -#define ID_INSTANCE 0x02 -#define ID_GLOBAL 0x03 -#define ID_CONST 0x06 -#define ID_VARMASK 0x02 +#define ID_INSTANCE 0x01 +#define ID_GLOBAL 0x02 +#define ID_ATTRSET 0x03 +#define ID_CONST 0x04 +#define ID_NTHREF 0x05 #endif |