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.

42 lines
644 B

  1. // Copyright (c) 1993-1999 Microsoft Corporation
  2. #ifndef __EBASE_H__
  3. #define __EBASE_H__
  4. typedef struct _sgoto
  5. {
  6. short Goto;
  7. short Token;
  8. } _SGOTO;
  9. #define SGOTO const _SGOTO
  10. typedef struct _sgotovector
  11. {
  12. short State;
  13. SGOTO * pSGoto;
  14. short Count;
  15. } _SGOTOVECTOR;
  16. #define SGOTOVECTOR const _SGOTOVECTOR
  17. typedef struct _tokvsstatevector
  18. {
  19. short Token;
  20. short * pTokenVsState;
  21. short Count;
  22. } _TOKVSSTATEVECTOR;
  23. #define TOKVSSTATEVECTOR const _TOKVSSTATEVECTOR
  24. #define _DBENTRY_DEFINED
  25. typedef struct _DBENTRY {
  26. short State;
  27. const char * pTranslated;
  28. } _DBENTRY;
  29. #define DBENTRY const _DBENTRY
  30. #endif//__EBASE_H__