Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / StyleSheet / defParser.tab.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: defParser.tab.h /main/3 1996/06/11 17:46:23 cde-hal $ */
24 #define STAR 257
25 #define COMMA 258
26 #define COLON 259
27 #define SEMI_COLON 260
28 #define FSOPEN 261
29 #define FSCLOSE 262
30 #define OPER_parenopen 263
31 #define OPER_parenclose 264
32 #define INTEGER 265
33 #define REAL 266
34 #define NORMAL_STRING 267
35 #define QUOTED_STRING 268
36 #define REF_NAME 269
37 #define TYPE 270
38 #define ValueListOpt 271
39 typedef union
40 {
41  unsigned char  charData;
42  unsigned char* charPtrData;
43  int            intData;
44  float          realData;
45  FeatureValue*  valueData;
46
47  defv_t*        valueListPtrData;
48  TypeValues*    typeValuesPtrData;
49  type_values_list_t*    typeValuesListPtrData;
50
51  def_list_t*    defListPtrData;
52  FeatureDef*    defPtrData;
53
54 } YYSTYPE;
55 extern YYSTYPE defParserlval;