sync master with lastest vba changes
[ooovba.git] / hwpfilter / source / grammar.h
blobdd88ff462a20e42b8a4438f311deb5f4ea416b35
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: grammar.h,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 typedef union {
32 char *dval;
33 char *str;
34 Node *ptr;
35 } YYSTYPE;
36 #define ACCENT 257
37 #define SMALL_GREEK 258
38 #define CAPITAL_GREEK 259
39 #define BINARY_OPERATOR 260
40 #define RELATION_OPERATOR 261
41 #define ARROW 262
42 #define GENERAL_IDEN 263
43 #define GENERAL_OPER 264
44 #define BIG_SYMBOL 265
45 #define FUNCTION 266
46 #define ROOT 267
47 #define FRACTION 268
48 #define SUBSUP 269
49 #define EQOVER 270
50 #define DELIMETER 271
51 #define LARGE_DELIM 272
52 #define DECORATION 273
53 #define SPACE_SYMBOL 274
54 #define CHARACTER 275
55 #define STRING 276
56 #define OPERATOR 277
57 #define EQBEGIN 278
58 #define EQEND 279
59 #define EQLEFT 280
60 #define EQRIGHT 281
61 #define NEWLINE 282
62 #define LEFT_DELIM 283
63 #define RIGHT_DELIM 284
64 #define DIGIT 285
66 #ifndef _WIN32
67 extern YYSTYPE yylval;
68 #endif