?? debug.h
字號:
/*
* Copyright (c) 2004 Security Architects Corporation. All rights reserved.
*
* Module Name:
*
* debug.h
*
* Abstract:
*
* This module implements various debug hooking routines.
*
* Author:
*
* Eugene Tsyrklevich 23-Apr-2004
*
* Revision History:
*
* None.
*/
#ifndef __DEBUG_H__
#define __DEBUG_H__
/*
* ZwDebugActiveProcess.
*/
typedef NTSTATUS (*fpZwDebugActiveProcess) (
UINT32 Unknown1,
UINT32 Unknown2
);
NTSTATUS
NTAPI
HookedNtDebugActiveProcess(
UINT32 Unknown1,
UINT32 Unknown2
);
BOOLEAN InitDebugHooks();
#endif /* __DEBUG_H__ */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -