Leaked source code of windows server 2003
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
411 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. typedef struct _sgotovector
  10. {
  11. short State;
  12. SGOTO * pSGoto;
  13. short Count;
  14. } SGOTOVECTOR;
  15. typedef struct _tokvsstatevector
  16. {
  17. short Token;
  18. short * pTokenVsState;
  19. short Count;
  20. } TOKVSSTATEVECTOR;
  21. #endif//__EBASE_H__