-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathNotify.h
51 lines (37 loc) · 1.95 KB
/
Notify.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
#pragma once
//////////////////////////////////////////////////////////////////////////
extern BOOL g_bMonitor_Notify ;
///////////////////////////////////////////////////////////////// -- --
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++// -- - - --
//+ +// -- - - --
//+ 结构体 +// -- - --
//+ +// - sudami -
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++// -- --
///////////////////////////////////////////////////////////////// -- --
// -- --
// --
typedef struct _NOTIY_INFO_ {
/*0x000 */ BOOL bNotifyState ; // 是否注册成功
/*0x004 */ PVOID NotifyRoutine ; // 回调函数地址
} NOTIY_INFO, *PNOTIY_INFO ;
///////////////////////////////////////////////////////////////// -- --
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++// -- - - --
//+ +// -- - - --
//+ 函数预定义 +// -- - --
//+ +// - sudami -
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++// -- --
///////////////////////////////////////////////////////////////// -- --
// -- --
// --
BOOL
SetNotify (
IN BOOL bInstall
);
BOOL
SetImageNotify (
);
BOOL
SetProcessNotify (
IN BOOL bInstall
);
/////////////////////////////// END OF FILE ///////////////////////////////