ReactOS
0.4.16-dev-942-g91fadeb
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
main.c
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS Process Status Helper Library
3
* LICENSE: MIT (https://spdx.org/licenses/MIT)
4
* PURPOSE: PSAPI Win2k3 style entrypoint
5
* COPYRIGHT: Copyright 2013 Pierre Schweitzer <pierre@reactos.org>
6
*/
7
8
#include <stdarg.h>
9
10
#define WIN32_NO_STATUS
11
#include <
windef.h
>
12
#include <
winbase.h
>
13
#define NTOS_MODE_USER
14
#include <
ndk/psfuncs.h
>
15
#include <
ndk/rtlfuncs.h
>
16
17
#include <
psapi.h
>
18
19
#define NDEBUG
20
#include <debug.h>
21
22
static
23
VOID
24
NTAPI
25
PsParseCommandLine
(
VOID
)
26
{
27
UNIMPLEMENTED
;
28
}
29
30
static
31
VOID
32
NTAPI
33
PsInitializeAndStartProfile
(
VOID
)
34
{
35
UNIMPLEMENTED
;
36
}
37
38
static
39
VOID
40
NTAPI
41
PsStopAndAnalyzeProfile
(
VOID
)
42
{
43
UNIMPLEMENTED
;
44
}
45
46
/*
47
* @implemented
48
*/
49
BOOLEAN
50
WINAPI
51
DllMain
(
HINSTANCE
hDllHandle,
52
DWORD
nReason,
53
LPVOID
Reserved
)
54
{
55
switch
(nReason)
56
{
57
case
DLL_PROCESS_ATTACH
:
58
DisableThreadLibraryCalls
(hDllHandle);
59
if
(
NtCurrentPeb
()->ProcessParameters->Flags &
RTL_USER_PROCESS_PARAMETERS_PROFILE_USER
)
60
{
61
PsParseCommandLine
();
62
PsInitializeAndStartProfile
();
63
}
64
break
;
65
66
case
DLL_PROCESS_DETACH
:
67
if
(
NtCurrentPeb
()->ProcessParameters->Flags &
RTL_USER_PROCESS_PARAMETERS_PROFILE_USER
)
68
{
69
PsStopAndAnalyzeProfile
();
70
}
71
break
;
72
}
73
return
TRUE
;
74
}
NtCurrentPeb
#define NtCurrentPeb()
Definition:
FLS.c:22
BOOLEAN
unsigned char BOOLEAN
Definition:
ProcessorBind.h:185
UNIMPLEMENTED
#define UNIMPLEMENTED
Definition:
ntoskrnl.c:15
TRUE
#define TRUE
Definition:
types.h:120
DllMain
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
Definition:
main.c:26
DLL_PROCESS_ATTACH
#define DLL_PROCESS_ATTACH
Definition:
compat.h:131
DLL_PROCESS_DETACH
#define DLL_PROCESS_DETACH
Definition:
compat.h:130
DisableThreadLibraryCalls
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition:
loader.c:85
PsStopAndAnalyzeProfile
static VOID NTAPI PsStopAndAnalyzeProfile(VOID)
Definition:
main.c:41
PsParseCommandLine
static VOID NTAPI PsParseCommandLine(VOID)
Definition:
main.c:25
PsInitializeAndStartProfile
static VOID NTAPI PsInitializeAndStartProfile(VOID)
Definition:
main.c:33
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
void
Definition:
nsiface.idl:2307
psfuncs.h
rtlfuncs.h
RTL_USER_PROCESS_PARAMETERS_PROFILE_USER
#define RTL_USER_PROCESS_PARAMETERS_PROFILE_USER
Definition:
rtltypes.h:42
psapi.h
NTAPI
#define NTAPI
Definition:
typedefs.h:36
winbase.h
Reserved
_Reserved_ PVOID Reserved
Definition:
winddi.h:3974
windef.h
WINAPI
#define WINAPI
Definition:
msvc.h:6
dll
win32
psapi
main.c
Generated on Thu Apr 3 2025 06:16:12 for ReactOS by
1.9.6