debug.h

来自「臭氧层主动防御系统驱动源代码!臭氧层主动防御系统驱动源代码!」· C头文件 代码 · 共 48 行

H
48
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?