ReactOS 0.4.16-dev-942-g91fadeb
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
22static
23VOID
26{
28}
29
30static
31VOID
34{
36}
37
38static
39VOID
42{
44}
45
46/*
47 * @implemented
48 */
51DllMain(HINSTANCE hDllHandle,
52 DWORD nReason,
54{
55 switch(nReason)
56 {
58 DisableThreadLibraryCalls(hDllHandle);
59 if (NtCurrentPeb()->ProcessParameters->Flags & RTL_USER_PROCESS_PARAMETERS_PROFILE_USER)
60 {
63 }
64 break;
65
67 if (NtCurrentPeb()->ProcessParameters->Flags & RTL_USER_PROCESS_PARAMETERS_PROFILE_USER)
68 {
70 }
71 break;
72 }
73 return TRUE;
74}
#define NtCurrentPeb()
Definition: FLS.c:22
unsigned char BOOLEAN
#define UNIMPLEMENTED
Definition: ntoskrnl.c:15
#define TRUE
Definition: types.h:120
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
Definition: main.c:26
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
#define DLL_PROCESS_DETACH
Definition: compat.h:130
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
static VOID NTAPI PsStopAndAnalyzeProfile(VOID)
Definition: main.c:41
static VOID NTAPI PsParseCommandLine(VOID)
Definition: main.c:25
static VOID NTAPI PsInitializeAndStartProfile(VOID)
Definition: main.c:33
unsigned long DWORD
Definition: ntddk_ex.h:95
#define RTL_USER_PROCESS_PARAMETERS_PROFILE_USER
Definition: rtltypes.h:42
#define NTAPI
Definition: typedefs.h:36
_Reserved_ PVOID Reserved
Definition: winddi.h:3974
#define WINAPI
Definition: msvc.h:6