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.

24 lines
570 B

  1. /**************************************************************************88
  2. ext.h
  3. dbghelp extensions include file
  4. ******************************************************************************/
  5. // This is a 64 bit aware debugger extension
  6. #define KDEXT_64BIT
  7. #include <nt.h>
  8. #include <ntrtl.h>
  9. #include <nturtl.h>
  10. #include <windows.h>
  11. #include <private.h>
  12. #include <symbols.h>
  13. #include <wdbgexts.h>
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #define PAGE_ALIGN64(Va) ((ULONG64)((Va) & ~((ULONG64) (PAGE_SIZE - 1))))
  18. #include <ntverp.h>