mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
371 B
24 lines
371 B
enum STRING_COMPONENT {
|
|
CHAR_BLANK,
|
|
CHAR_COMMA,
|
|
CHAR_EQUAL,
|
|
CHAR_LBRACK,
|
|
CHAR_RBRACK,
|
|
CHAR_LPAREN,
|
|
CHAR_RPAREN,
|
|
CHAR_SEMICOLON,
|
|
OP_DEREF,
|
|
OP_ADDRESS,
|
|
OP_MEMBER,
|
|
OP_POINTER,
|
|
WORD_STRUCT,
|
|
WORD_UNION,
|
|
WORD_ENUM,
|
|
WORD_VOID,
|
|
RETURN_VALUE,
|
|
LAST_COMPONENT
|
|
} ;
|
|
|
|
extern BOUND_PAIR AllocBounds;
|
|
extern BOUND_PAIR ValidBounds;
|
|
extern BufferManager * SwitchBuffer;
|