ReactOS
0.4.16-dev-963-g182f353
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
notifyhook.h
Go to the documentation of this file.
1
/*
2
* Copyright 2004 Martin Fuchs
3
*
4
* This library is free software; you can redistribute it and/or
5
* modify it under the terms of the GNU Lesser General Public
6
* License as published by the Free Software Foundation; either
7
* version 2.1 of the License, or (at your option) any later version.
8
*
9
* This library is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
* Lesser General Public License for more details.
13
*
14
* You should have received a copy of the GNU Lesser General Public
15
* License along with this library; if not, write to the Free Software
16
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
*/
18
19
20
//
21
// NotifyHook DLL for ROS Explorer
22
//
23
// notifyhook.h
24
//
25
// Martin Fuchs, 17.03.2004
26
//
27
28
29
#ifdef _NOTIFYHOOK_IMPL
30
#define DECL_NOTIFYHOOK __declspec(dllexport)
31
#else
32
#define DECL_NOTIFYHOOK __declspec(dllimport)
33
#ifdef _MSC_VER
34
#pragma comment(lib, "notifyhook"
)
35
#endif
36
#endif
37
38
#ifdef __cplusplus
39
extern
"C"
{
40
#endif
41
42
DECL_NOTIFYHOOK
UINT
InstallNotifyHook
(
void
);
43
DECL_NOTIFYHOOK
void
DeinstallNotifyHook
(
void
);
44
45
DECL_NOTIFYHOOK
void
GetWindowModulePath
(
HWND
hwnd
);
46
DECL_NOTIFYHOOK
int
GetWindowModulePathCopyData
(
LPARAM
lparam
,
HWND
* phwnd,
LPSTR
buffer
,
int
size
);
47
48
#ifdef __cplusplus
49
};
50
#endif
lparam
@ lparam
Definition:
SystemMenu.c:31
buffer
GLuint buffer
Definition:
glext.h:5915
size
GLsizeiptr size
Definition:
glext.h:5919
void
Definition:
nsiface.idl:2307
UINT
unsigned int UINT
Definition:
ndis.h:50
DeinstallNotifyHook
DECL_NOTIFYHOOK void DeinstallNotifyHook(void)
Definition:
notifyhook.c:90
InstallNotifyHook
DECL_NOTIFYHOOK UINT InstallNotifyHook(void)
Definition:
notifyhook.c:83
GetWindowModulePathCopyData
DECL_NOTIFYHOOK int GetWindowModulePathCopyData(LPARAM lparam, HWND *phwnd, LPSTR buffer, int size)
Definition:
notifyhook.c:103
DECL_NOTIFYHOOK
#define DECL_NOTIFYHOOK
Definition:
notifyhook.h:32
GetWindowModulePath
DECL_NOTIFYHOOK void GetWindowModulePath(HWND hwnd)
Definition:
notifyhook.c:97
hwnd
_In_ LONG _In_ HWND hwnd
Definition:
winddi.h:4023
LPARAM
LONG_PTR LPARAM
Definition:
windef.h:208
LPSTR
char * LPSTR
Definition:
xmlstorage.h:182
modules
rosapps
applications
explorer-old
notifyhook
notifyhook.h
Generated on Mon Apr 7 2025 06:08:31 for ReactOS by
1.9.6