1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37: #ifndef YYTOKENTYPE
38: # define YYTOKENTYPE
39:
40:
41: enum yytokentype {
42: CHECK = 258,
43: CODESTART = 259,
44: COPYRIGHT = 260,
45: CUSTOM = 261,
46: DATE = 262,
47: DEBUG = 263,
48: DESCRIPTION = 264,
49: EXIT = 265,
50: EXPORT = 266,
51: FLAG_ON = 267,
52: FLAG_OFF = 268,
53: FULLMAP = 269,
54: HELP = 270,
55: IMPORT = 271,
56: INPUT = 272,
57: MAP = 273,
58: MESSAGES = 274,
59: MODULE = 275,
60: MULTIPLE = 276,
61: OS_DOMAIN = 277,
62: OUTPUT = 278,
63: PSEUDOPREEMPTION = 279,
64: REENTRANT = 280,
65: SCREENNAME = 281,
66: SHARELIB = 282,
67: STACK = 283,
68: START = 284,
69: SYNCHRONIZE = 285,
70: THREADNAME = 286,
71: TYPE = 287,
72: VERBOSE = 288,
73: VERSIONK = 289,
74: XDCDATA = 290,
75: STRING = 291,
76: QUOTED_STRING = 292
77: };
78: #endif
79:
80: #define CHECK 258
81: #define CODESTART 259
82: #define COPYRIGHT 260
83: #define CUSTOM 261
84: #define DATE 262
85: #define DEBUG 263
86: #define DESCRIPTION 264
87: #define EXIT 265
88: #define EXPORT 266
89: #define FLAG_ON 267
90: #define FLAG_OFF 268
91: #define FULLMAP 269
92: #define HELP 270
93: #define IMPORT 271
94: #define INPUT 272
95: #define MAP 273
96: #define MESSAGES 274
97: #define MODULE 275
98: #define MULTIPLE 276
99: #define OS_DOMAIN 277
100: #define OUTPUT 278
101: #define PSEUDOPREEMPTION 279
102: #define REENTRANT 280
103: #define SCREENNAME 281
104: #define SHARELIB 282
105: #define STACK 283
106: #define START 284
107: #define SYNCHRONIZE 285
108: #define THREADNAME 286
109: #define TYPE 287
110: #define VERBOSE 288
111: #define VERSIONK 289
112: #define XDCDATA 290
113: #define STRING 291
114: #define QUOTED_STRING 292
115:
116:
117:
118:
119: #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
120: typedef union YYSTYPE
121: #line 113 "nlmheader.y"
122: {
123: char *string;
124: struct string_list *list;
125: }
126:
127: #line 128 "nlmheader.h"
128: YYSTYPE;
129: # define yystype YYSTYPE
130: # define YYSTYPE_IS_DECLARED 1
131: # define YYSTYPE_IS_TRIVIAL 1
132: #endif
133:
134: extern YYSTYPE yylval;
135: