Windows NT 4.0 source code leak
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
334 B

4 years ago
  1. #ifndef __EBASE_H__
  2. #define __EBASE_H__
  3. typedef struct _sgoto
  4. {
  5. short Goto;
  6. short Token;
  7. } SGOTO;
  8. typedef struct _sgotovector
  9. {
  10. short State;
  11. SGOTO * pSGoto;
  12. short Count;
  13. } SGOTOVECTOR;
  14. typedef struct _tokvsstatevector
  15. {
  16. short Token;
  17. short * pTokenVsState;
  18. short Count;
  19. } TOKVSSTATEVECTOR;
  20. #endif//__EBASE_H__