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.

36 lines
592 B

  1. /*++
  2. // Copyright (c) 1999-2001 Microsoft Corporation, All Rights Reserved
  3. Module Name:
  4. UMIPATHLEX.H
  5. Abstract:
  6. UMI Object Path DFA Tokens
  7. History:
  8. --*/
  9. #ifndef _UMIPATHLEX_H_
  10. #define _UMIPATHLEX_H_
  11. #define UMIPATH_TOK_EOF 0
  12. #define UMIPATH_TOK_ERROR 1
  13. #define UMIPATH_TOK_IDENT 100
  14. #define UMIPATH_TOK_EQ 104
  15. #define UMIPATH_TOK_DOT 105
  16. #define UMIPATH_TOK_COMMA 109
  17. #define UMIPATH_TOK_FORWARDSLASH 110
  18. #define UMIPATH_TOK_SERVERNAME 111
  19. #define UMIPATH_TOK_SINGLETON_SYM 108
  20. extern LexEl UMIPath_LexTable[];
  21. #endif