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

Diff for /omi/wql/wqlyacc.h between version 1.2 and 1.3

version 1.2, 2015/04/20 18:10:35 version 1.3, 2015/04/20 18:20:37
Line 1 
Line 1 
 /*  #define WQL_DOT 257
 **==============================================================================  #define WQL_COLON 258
 **  #define WQL_OR 259
 ** Open Management Infrastructure (OMI)  #define WQL_AND 260
 **  #define WQL_NOT 261
 ** Copyright (c) Microsoft Corporation  #define WQL_ERROR 262
 **  #define WQL_LT 263
 ** Licensed under the Apache License, Version 2.0 (the "License"); you may not  #define WQL_FROM 264
 ** use this file except in compliance with the License. You may obtain a copy  #define WQL_LE 265
 ** of the License at  #define WQL_WHERE 266
 **  #define WQL_NE 267
 **     http://www.apache.org/licenses/LICENSE-2.0  #define WQL_GT 268
 **  #define WQL_EQ 269
 ** THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY  #define WQL_SELECT 270
 ** KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED  #define WQL_GE 271
 ** WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,  #define WQL_NULL 272
 ** MERCHANTABLITY OR NON-INFRINGEMENT.  #define WQL_LIKE 273
 **  #define WQL_ISA 274
 ** See the Apache 2 License for the specific language governing permissions  #define WQL_IDENTIFIER 275
 ** and limitations under the License.  #define WQL_BOOLEAN 276
 **  #define WQL_INTEGER 277
 **==============================================================================  #define WQL_REAL 278
 */  #define WQL_STRING 279
   
 #define WQL_OR 257  
 #define WQL_AND 258  
 #define WQL_NOT 259  
 #define WQL_ERROR 260  
 #define WQL_LT 261  
 #define WQL_FROM 262  
 #define WQL_LE 263  
 #define WQL_WHERE 264  
 #define WQL_NE 265  
 #define WQL_GT 266  
 #define WQL_REAL 267  
 #define WQL_EQ 268  
 #define WQL_SELECT 269  
 #define WQL_GE 270  
 #define WQL_NULL 271  
 #define WQL_IDENTIFIER 272  
 #define WQL_BOOLEAN 273  
 #define WQL_INTEGER 274  
 #define WQL_STRING 275  
 #ifdef YYSTYPE  
 #undef  YYSTYPE_IS_DECLARED  
 #define YYSTYPE_IS_DECLARED 1  
 #endif  
 #ifndef YYSTYPE_IS_DECLARED  
 #define YYSTYPE_IS_DECLARED 1  
 typedef union typedef union
 { {
     WQL_Symbol symbol;     WQL_Symbol symbol;
Line 55 
Line 29 
     double real;     double real;
     unsigned char boolean;     unsigned char boolean;
 } YYSTYPE; } YYSTYPE;
 #endif /* !YYSTYPE_IS_DECLARED */  
 extern YYSTYPE wqllval; extern YYSTYPE wqllval;


Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

ViewCVS 0.9.2