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.

37 lines
536 B

  1. /*++
  2. Module Name:
  3. kdlog.h
  4. Abstract:
  5. This header contains definitions for components which help diagnose
  6. problems in the kd client debugger code.
  7. Author(s):
  8. Neil Sandlin (neilsa)
  9. Revisions:
  10. --*/
  11. #ifndef _KDLOG_
  12. #define _KDLOG_
  13. typedef struct _KD_DBG_LOG_CONTEXT {
  14. USHORT Type;
  15. USHORT Version;
  16. ULONG EntryLength;
  17. BOOLEAN Enabled;
  18. ULONG Index;
  19. ULONG LastIndex;
  20. ULONG Count;
  21. ULONG TotalLogged;
  22. PVOID LogData;
  23. } KD_DBG_LOG_CONTEXT, *PKD_DBG_LOG_CONTEXT;
  24. #endif // _KDLOG_