47 lines
816 B
C
47 lines
816 B
C
|
#define FORM 257
|
||
|
#define COLORTABLE 258
|
||
|
#define COLOR 259
|
||
|
#define BLACK 260
|
||
|
#define RED 261
|
||
|
#define GREEN 262
|
||
|
#define YELLOW 263
|
||
|
#define BLUE 264
|
||
|
#define MAGENTA 265
|
||
|
#define CYAN 266
|
||
|
#define WHITE 267
|
||
|
#define PAIR 268
|
||
|
#define NAME 269
|
||
|
#define STRING 270
|
||
|
#define AT 271
|
||
|
#define AS 272
|
||
|
#define HEIGHT 273
|
||
|
#define EQUALS 274
|
||
|
#define NUMBER 275
|
||
|
#define WIDTH 276
|
||
|
#define STARTFIELD 277
|
||
|
#define COMMA 278
|
||
|
#define LBRACE 279
|
||
|
#define RBRACE 280
|
||
|
#define TEXT 281
|
||
|
#define ATTR 282
|
||
|
#define SELATTR 283
|
||
|
#define DEFAULT 284
|
||
|
#define LABEL 285
|
||
|
#define LIMIT 286
|
||
|
#define SELECTED 287
|
||
|
#define OPTIONS 288
|
||
|
#define ACTION 289
|
||
|
#define FUNC 290
|
||
|
#define LINK 291
|
||
|
#define UP 292
|
||
|
#define DOWN 293
|
||
|
#define LEFT 294
|
||
|
#define RIGHT 295
|
||
|
#define NEXT 296
|
||
|
#define DEF 297
|
||
|
typedef union {
|
||
|
int ival;
|
||
|
char *sval;
|
||
|
} YYSTYPE;
|
||
|
extern YYSTYPE yylval;
|