winprefsyacc.h revision 6747b715
1/* A Bison parser, made by GNU Bison 2.4.3.  */
2
3/* Skeleton interface for Bison's Yacc-like parsers in C
4
5      Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
6   2009, 2010 Free Software Foundation, Inc.
7
8   This program is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21/* As a special exception, you may create a larger work that contains
22   part or all of the Bison parser skeleton and distribute that work
23   under terms of your choice, so long as that work isn't itself a
24   parser generator using the skeleton or a modified version thereof
25   as a parser skeleton.  Alternatively, if you modify or redistribute
26   the parser skeleton itself, you may (at your option) remove this
27   special exception, which will cause the skeleton and the resulting
28   Bison output files to be licensed under the GNU General Public
29   License without this special exception.
30
31   This special exception was added by the Free Software Foundation in
32   version 2.2 of Bison.  */
33
34
35/* Tokens.  */
36#ifndef YYTOKENTYPE
37# define YYTOKENTYPE
38   /* Put the tokens into the symbol table, so that GDB and other debuggers
39      know about them.  */
40   enum yytokentype {
41     NEWLINE = 258,
42     MENU = 259,
43     LB = 260,
44     RB = 261,
45     ICONDIRECTORY = 262,
46     DEFAULTICON = 263,
47     ICONS = 264,
48     STYLES = 265,
49     TOPMOST = 266,
50     MAXIMIZE = 267,
51     MINIMIZE = 268,
52     BOTTOM = 269,
53     NOTITLE = 270,
54     OUTLINE = 271,
55     NOFRAME = 272,
56     DEFAULTSYSMENU = 273,
57     SYSMENU = 274,
58     ROOTMENU = 275,
59     SEPARATOR = 276,
60     ATSTART = 277,
61     ATEND = 278,
62     EXEC = 279,
63     ALWAYSONTOP = 280,
64     DEBUGOUTPUT = 281,
65     RELOAD = 282,
66     TRAYICON = 283,
67     FORCEEXIT = 284,
68     SILENTEXIT = 285,
69     STRING = 286
70   };
71#endif
72/* Tokens.  */
73#define NEWLINE 258
74#define MENU 259
75#define LB 260
76#define RB 261
77#define ICONDIRECTORY 262
78#define DEFAULTICON 263
79#define ICONS 264
80#define STYLES 265
81#define TOPMOST 266
82#define MAXIMIZE 267
83#define MINIMIZE 268
84#define BOTTOM 269
85#define NOTITLE 270
86#define OUTLINE 271
87#define NOFRAME 272
88#define DEFAULTSYSMENU 273
89#define SYSMENU 274
90#define ROOTMENU 275
91#define SEPARATOR 276
92#define ATSTART 277
93#define ATEND 278
94#define EXEC 279
95#define ALWAYSONTOP 280
96#define DEBUGOUTPUT 281
97#define RELOAD 282
98#define TRAYICON 283
99#define FORCEEXIT 284
100#define SILENTEXIT 285
101#define STRING 286
102
103
104
105
106#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
107typedef union YYSTYPE
108{
109
110/* Line 1685 of yacc.c  */
111#line 89 "winprefsyacc.y"
112
113  char *sVal;
114  unsigned long uVal;
115  int iVal;
116
117
118
119/* Line 1685 of yacc.c  */
120#line 121 "winprefsyacc.h"
121} YYSTYPE;
122# define YYSTYPE_IS_TRIVIAL 1
123# define yystype YYSTYPE /* obsolescent; will be withdrawn */
124# define YYSTYPE_IS_DECLARED 1
125#endif
126
127extern YYSTYPE yylval;
128
129
130