Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
723 B

  1. #ifndef _STUFF_H_INC
  2. #define _STUFF_H_INC
  3. //package is in use
  4. #define YYAPI_PACKAGE 1 // package is in use
  5. #define YYAPI_TOKENNAME yychar
  6. #define YYAPI_TOKENTYPE int
  7. #define YYAPI_TOKENNONE -2
  8. #define YYAPI_VALUENAME yylval
  9. #define YYAPI_VALUETYPE YYSTYPE
  10. #define YYLEX _yylex.yylex
  11. #define YYPARSEPROTO
  12. #undef YYPARSER
  13. #define YYPARSER TripParser
  14. #undef YYLEXER
  15. #define YYLEXER TripLexer
  16. #undef YY_CHAR
  17. #define YY_CHAR WCHAR
  18. #ifndef YYERROR_VERBOSE
  19. #define YYERROR_VERBOSE 1
  20. #endif
  21. #endif /* _STUFF_H_INC */