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.

48 lines
1.2 KiB

  1. //***************************************************************************
  2. //
  3. // SQLLEX.H
  4. //
  5. // SQL Level 1 DFA Table & Tokens
  6. //
  7. // Copyright 1998 Microsoft Corporation
  8. //
  9. //***************************************************************************
  10. #ifndef _SQLLEX_H_
  11. #define SQL_1_TOK_EOF 0
  12. #define SQL_1_TOK_ERROR 1
  13. #define SQL_1_TOK_IDENT 100
  14. #define SQL_1_TOK_QSTRING 101
  15. #define SQL_1_TOK_INT 102
  16. #define SQL_1_TOK_REAL 103
  17. #define SQL_1_TOK_CHAR 104
  18. #define SQL_1_TOK_LE 105
  19. #define SQL_1_TOK_LT 106
  20. #define SQL_1_TOK_GE 107
  21. #define SQL_1_TOK_GT 108
  22. #define SQL_1_TOK_EQ 109
  23. #define SQL_1_TOK_NE 110
  24. #define SQL_1_TOK_DOT 111
  25. #define SQL_1_TOK_OPEN_PAREN 112
  26. #define SQL_1_TOK_CLOSE_PAREN 113
  27. #define SQL_1_TOK_ASTERISK 114
  28. #define SQL_1_TOK_COMMA 115
  29. #define SQL_1_TOK_SELECT 120
  30. #define SQL_1_TOK_WHERE 121
  31. #define SQL_1_TOK_FROM 122
  32. #define SQL_1_TOK_LIKE 123
  33. #define SQL_1_TOK_OR 124
  34. #define SQL_1_TOK_AND 125
  35. #define SQL_1_TOK_NOT 126
  36. #define SQL_1_TOK_IS 127
  37. #define SQL_1_TOK_NULL 128
  38. extern LexEl Sql_1_LexTable[];
  39. #endif