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.

44 lines
894 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. Data.c
  5. Abstract:
  6. This module contains definitions for global data for the IEU and
  7. VDD debugging extensions
  8. Author:
  9. Dave Hastings (daveh) 2-Apr-1992
  10. Revision History:
  11. --*/
  12. #include <precomp.h>
  13. #pragma hdrstop
  14. //
  15. // Pointers to NTSD api
  16. //
  17. PWINDBG_OUTPUT_ROUTINE Print;
  18. PWINDBG_GET_EXPRESSION GetExpression;
  19. PWINDBG_GET_SYMBOL GetSymbol;
  20. PWINDBG_CHECK_CONTROL_C CheckCtrlC;
  21. PWINDBG_READ_PROCESS_MEMORY_ROUTINE ReadMem;
  22. PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE WriteMem;
  23. PWINDBG_GET_THREAD_CONTEXT_ROUTINE ExtGetThreadContext;
  24. PWINDBG_SET_THREAD_CONTEXT_ROUTINE ExtSetThreadContext;
  25. PWINDBG_IOCTL_ROUTINE ExtIoctl;
  26. PWINDBG_STACKTRACE_ROUTINE ExtStackTrace;
  27. HANDLE hCurrentProcess;
  28. HANDLE hCurrentThread;
  29. LPSTR lpArgumentString;