(file) Return to wqlyacc.h CVS log (file) (dir) Up to [OMI] / omi / wql

 1 krisbash 1.3 #define WQL_DOT 257
 2              #define WQL_COLON 258
 3              #define WQL_OR 259
 4              #define WQL_AND 260
 5              #define WQL_NOT 261
 6              #define WQL_ERROR 262
 7              #define WQL_LT 263
 8              #define WQL_FROM 264
 9              #define WQL_LE 265
10              #define WQL_WHERE 266
11              #define WQL_NE 267
12              #define WQL_GT 268
13              #define WQL_EQ 269
14              #define WQL_SELECT 270
15              #define WQL_GE 271
16              #define WQL_NULL 272
17              #define WQL_LIKE 273
18              #define WQL_ISA 274
19              #define WQL_IDENTIFIER 275
20              #define WQL_BOOLEAN 276
21              #define WQL_INTEGER 277
22 krisbash 1.3 #define WQL_REAL 278
23              #define WQL_STRING 279
24 mike     1.1 typedef union
25              {
26                  WQL_Symbol symbol;
27                  MI_Char* string;
28                  long long integer;
29                  double real;
30                  unsigned char boolean;
31              } YYSTYPE;
32              extern YYSTYPE wqllval;

ViewCVS 0.9.2