(file) Return to wqlyacc.h CVS log (file) (dir) Up to [OMI] / omi / wql

 1 mike  1.1 /*
 2           **==============================================================================
 3           **
 4           ** Open Management Infrastructure (OMI)
 5           **
 6           ** Copyright (c) Microsoft Corporation
 7           ** 
 8           ** Licensed under the Apache License, Version 2.0 (the "License"); you may not 
 9           ** use this file except in compliance with the License. You may obtain a copy 
10           ** of the License at 
11           **
12           **     http://www.apache.org/licenses/LICENSE-2.0 
13           **
14           ** THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15           ** KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 
16           ** WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 
17           ** MERCHANTABLITY OR NON-INFRINGEMENT. 
18           **
19           ** See the Apache 2 License for the specific language governing permissions 
20           ** and limitations under the License.
21           **
22 mike  1.1 **==============================================================================
23           */
24           
25           #define WQL_OR 257
26           #define WQL_AND 258
27           #define WQL_NOT 259
28           #define WQL_ERROR 260
29           #define WQL_LT 261
30           #define WQL_FROM 262
31           #define WQL_LE 263
32           #define WQL_WHERE 264
33           #define WQL_NE 265
34           #define WQL_GT 266
35           #define WQL_REAL 267
36           #define WQL_EQ 268
37           #define WQL_SELECT 269
38           #define WQL_GE 270
39           #define WQL_NULL 271
40           #define WQL_IDENTIFIER 272
41           #define WQL_BOOLEAN 273
42           #define WQL_INTEGER 274
43 mike  1.1 #define WQL_STRING 275
44           #ifdef YYSTYPE
45           #undef  YYSTYPE_IS_DECLARED
46           #define YYSTYPE_IS_DECLARED 1
47           #endif
48           #ifndef YYSTYPE_IS_DECLARED
49           #define YYSTYPE_IS_DECLARED 1
50           typedef union
51           {
52               WQL_Symbol symbol;
53               MI_Char* string;
54               long long integer;
55               double real;
56               unsigned char boolean;
57           } YYSTYPE;
58           #endif /* !YYSTYPE_IS_DECLARED */
59           extern YYSTYPE wqllval;

ViewCVS 0.9.2