mirror of https://github.com/tongzx/nt5src
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
37 lines
536 B
/*++
|
|
|
|
Module Name:
|
|
|
|
kdlog.h
|
|
|
|
Abstract:
|
|
|
|
This header contains definitions for components which help diagnose
|
|
problems in the kd client debugger code.
|
|
|
|
Author(s):
|
|
|
|
Neil Sandlin (neilsa)
|
|
|
|
Revisions:
|
|
|
|
--*/
|
|
|
|
#ifndef _KDLOG_
|
|
#define _KDLOG_
|
|
|
|
|
|
typedef struct _KD_DBG_LOG_CONTEXT {
|
|
USHORT Type;
|
|
USHORT Version;
|
|
ULONG EntryLength;
|
|
BOOLEAN Enabled;
|
|
ULONG Index;
|
|
ULONG LastIndex;
|
|
ULONG Count;
|
|
ULONG TotalLogged;
|
|
PVOID LogData;
|
|
} KD_DBG_LOG_CONTEXT, *PKD_DBG_LOG_CONTEXT;
|
|
|
|
|
|
#endif // _KDLOG_
|