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.

27 lines
838 B

  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 <stdio.h>
  11. #include "rcpptype.h"
  12. #include "rcppext.h"
  13. #include "grammar.h"
  14. /*
  15. * TOKENS - This file contains the initialized tables of text, token pairs for
  16. * all the C language symbols and keywords, and the mapped value for YACC.
  17. *
  18. * IMPORTANT : this MUST be in the same order as the %token list in grammar.y
  19. *
  20. */
  21. keytab_t Tokstrings[] = {
  22. #define DAT(tok1, name2, map3, il4, mmap5) { name2, map3 },
  23. #include "tokdat.h"
  24. #undef DAT
  25. };