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.

28 lines
1.1 KiB

  1. /************************************************************************/
  2. /* */
  3. /* RCPP - Resource Compiler Pre-Processor for NT system */
  4. /* */
  5. /* TOKENS.C - Token stuff, probably removable from RCPP */
  6. /* */
  7. /* 27-Nov-90 w-BrianM Update for NT from PM SDK RCPP */
  8. /* */
  9. /************************************************************************/
  10. #include <rc.h>
  11. //#include <stdio.h>
  12. //#include "rcpptype.h"
  13. //#include "rcppext.h"
  14. //#include "grammar.h"
  15. /*
  16. * TOKENS - This file contains the initialized tables of text, token pairs for
  17. * all the C language symbols and keywords, and the mapped value for YACC.
  18. *
  19. * IMPORTANT : this MUST be in the same order as the %token list in grammar.y
  20. *
  21. */
  22. keytab_t Tokstrings[] = {
  23. #define DAT(tok1, name2, map3, il4, mmap5) { name2, map3 },
  24. #include "tokdat.h"
  25. #undef DAT
  26. };