📄 debugprint.h
字号:
// DebugPrint.h: interface for the DebugPrint class.
//
//////////////////////////////////////////////////////////////////////
typedef struct _DEBUGPRINT_EVENT
{
LIST_ENTRY m_ListEntry;
ULONG Len;
PUCHAR EventData;
} DEBUGPRINT_EVENT, *PDEBUGPRINT_EVENT;
class DPTestThread : public KSystemThread
{
SAFE_DESTRUCTORS
public:
DPTestThread(void);
KSemaphore m_Mailbox;
};
class DebugPrint
{
public:
DebugPrint(char *str);
virtual ~DebugPrint();
public:
void DPrint(char *str);
MEMBER_THREAD (DebugPrint, Stage1)
bool KeepRunning;
DPTestThread m_Stage1;
char DriverName[255];
USHORT DriverNameLen;
KInterlockedList<DEBUGPRINT_EVENT> m_List;
};
#define MAX_MSG 1000000
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -