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.

41 lines
585 B

  1. /*
  2. * decoder.h
  3. *
  4. * Main decoder header file
  5. */
  6. #ifndef DECODER_H
  7. #define DECODER_H
  8. #ifdef EXT
  9. # undef EXT
  10. #endif
  11. #ifdef ALLOC_VARS
  12. # define EXT
  13. #else
  14. # define EXT extern
  15. #endif
  16. #ifdef USE_ASSEMBLY
  17. # define ASM_DECODE_VERBATIM_BLOCK
  18. # define ASM_TRANSLATE_E8
  19. # define ASM_MAKE_TABLE
  20. #endif
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include "../common/typedefs.h"
  24. #include "../common/compdefs.h"
  25. #include "decmacro.h"
  26. #include "decdefs.h"
  27. #ifdef BIT16
  28. # include "ring16.h"
  29. #endif
  30. #include "decvars.h"
  31. #include "decapi.h"
  32. #include "decproto.h"
  33. #endif /* DECODER_H */