-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathatom.h
78 lines (60 loc) · 1.05 KB
/
atom.h
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* Copyright (c) 2004 Security Architects Corporation. All rights reserved.
*
* Module Name:
*
* atom.h
*
* Abstract:
*
* This module defines various types used by atom object hooking routines.
*
* Author:
*
* Eugene Tsyrklevich 06-Apr-2004
*
* Revision History:
*
* None.
*/
#ifndef __ATOM_H__
#define __ATOM_H__
#include <NTDDK.h>
#include "policy.h"
#include "pathproc.h"
#include "hookproc.h"
#include "accessmask.h"
#include "learn.h"
#include "log.h"
/*
* ZwAddAtom adds an atom to the global atom table. [NAR]
*/
typedef NTSTATUS (*fpZwAddAtom) (
IN PWSTR String,
IN ULONG StringLength,
OUT PUSHORT Atom
);
NTSTATUS
NTAPI
HookedNtAddAtom(
IN PWSTR String,
IN ULONG StringLength,
OUT PUSHORT Atom
);
/*
* ZwFindAtom searches for an atom in the global atom table. [NAR]
*/
typedef NTSTATUS (*fpZwFindAtom) (
IN PWSTR String,
IN ULONG StringLength,
OUT PUSHORT Atom
);
NTSTATUS
NTAPI
HookedNtFindAtom(
IN PWSTR String,
IN ULONG StringLength,
OUT PUSHORT Atom
);
BOOLEAN InitAtomHooks();
#endif /* __ATOM_H__ */