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.

35 lines
1.0 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. //
  6. // File: dbgexts.h
  7. //
  8. // Contents: macro for declaration of debugger extensions for friend
  9. // to each class
  10. //
  11. // Classes:
  12. //
  13. // Functions:
  14. //
  15. // History: dd-mmm-yy Author Comment
  16. // 03-Feb-95 t-ScottH author
  17. //
  18. //--------------------------------------------------------------------------
  19. #ifndef _DBGEXTS_H_
  20. #define _DBGEXTS_H_
  21. #include <ntsdexts.h>
  22. #define DEBUG_EXTENSION_API(s) \
  23. void \
  24. s( \
  25. HANDLE hCurrentProcess, \
  26. HANDLE hCurrentThread, \
  27. DWORD dwCurrentPc, \
  28. PNTSD_EXTENSION_APIS lpExtensionApis, \
  29. LPSTR args \
  30. )
  31. #endif // _DBGEXTS_H_
  32.