From 2acec63b2ed75bf4b71ad257db573c4b8f9639e7 Mon Sep 17 00:00:00 2001 From: tumagonx Date: Tue, 8 Aug 2017 10:54:53 +0700 Subject: initial commit --- debug.h | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 debug.h (limited to 'debug.h') diff --git a/debug.h b/debug.h new file mode 100644 index 0000000..b2f9077 --- /dev/null +++ b/debug.h @@ -0,0 +1,47 @@ +/* + * 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__ */ -- cgit v1.3