blob: b2f9077936e737f6720db1343999c6b989b61300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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__ */
|