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.

50 lines
761 B

  1. /*++
  2. Copyright (c) 1993-2000 Microsoft Corporation
  3. Module Name:
  4. kdexts.h
  5. Abstract:
  6. This header file contains declarations for the generic routines and initialization code
  7. Author:
  8. Glenn Peterson (glennp) 27-Mar-2000:
  9. Environment:
  10. User Mode
  11. --*/
  12. // This is a 64 bit aware debugger extension
  13. #define KDEXT_64BIT
  14. #include <nt.h>
  15. #include <ntrtl.h>
  16. #include <nturtl.h>
  17. #include <windows.h>
  18. #include <wdbgexts.h>
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. //
  22. // globals
  23. //
  24. #ifndef KDEXTS_EXTERN
  25. #define KDEXTS_EXTERN extern
  26. #endif
  27. KDEXTS_EXTERN WINDBG_EXTENSION_APIS ExtensionApis;
  28. KDEXTS_EXTERN DBGKD_GET_VERSION64 KernelVersionPacket;
  29. BOOL
  30. HaveDebuggerData(
  31. VOID
  32. );