Files
2022-12-13 12:44:04 +01:00

27 lines
473 B
C

#ifndef YYERRCODE
#define YYERRCODE 256
#endif
#define TAGNAME 257
#define CSTRING 258
#define DVALUE 259
#define IVALUE 260
#define EQUAL 261
#define LESS 262
#define GREATER 263
#define NOTEQUAL 264
#define LESSOREQUAL 265
#define GREATEROREQUAL 266
#define LEFTP 267
#define RIGHTP 268
#define OR 269
#define AND 270
#define LIKE 271
#define NOT 272
#define CERROR 273
typedef union {
rsvc_logic_data* data;
rsvcLogicInst* inst;
} YYSTYPE;
extern YYSTYPE yylval;