forked from xiaobfly/DisPg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Guard.h
101 lines (85 loc) · 2.16 KB
/
Guard.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
*
* Copyright (c) 2015-2018 by blindtiger ( blindtiger@foxmail.com )
*
* The contents of this file are subject to the Mozilla Public License Version
* 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. SEe the License
* for the specific language governing rights and limitations under the
* License.
*
* The Initial Developer of the Original e is blindtiger.
*
*/
#ifndef _GUARD_H_
#define _GUARD_H_
#ifdef __cplusplus
/* Assume C declarations for C++ */
extern "C" {
#endif /* __cplusplus */
#define POOL_BIG_TABLE_ENTRY_FREE 0x1
typedef struct _POOL_BIG_PAGES {
PVOID Va;
ULONG Key;
ULONG PoolType;
SIZE_T NumberOfPages;
} POOL_BIG_PAGES, *PPOOL_BIG_PAGES;
typedef LONG EX_SPIN_LOCK, *PEX_SPIN_LOCK;
NTKERNELAPI
KIRQL
NTAPI
ExAcquireSpinLockShared(
__inout PEX_SPIN_LOCK SpinLock
);
NTKERNELAPI
VOID
NTAPI
ExReleaseSpinLockShared(
__inout PEX_SPIN_LOCK SpinLock,
__in KIRQL OldIrql
);
NTKERNELAPI
VOID
NTAPI
ExAcquireSpinLockSharedAtDpcLevel(
__inout PEX_SPIN_LOCK SpinLock
);
NTKERNELAPI
VOID
NTAPI
ExReleaseSpinLockSharedFromDpcLevel(
__inout PEX_SPIN_LOCK SpinLock
);
#ifdef _WIN64
typedef struct _KPRIQUEUE {
DISPATCHER_HEADER Header;
LIST_ENTRY EntryListHead[32];
LONG CurrentCount[32];
ULONG MaximumCount;
LIST_ENTRY ThreadListHead;
}KPRIQUEUE, *PKPRIQUEUE;
C_ASSERT(sizeof(KPRIQUEUE) == 0x2b0);
extern
POOL_TYPE
(NTAPI * NtosMmDeterminePoolType)(
__in PVOID VirtualAddress
);
VOID
NTAPI
DisPg(
VOID
);
VOID
NTAPI
MakePgFire(
VOID
);
#endif // _WIN64
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif // !_GUARD_H_