2022-01-16 16:02:01 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Secondary Logon Service
|
|
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
|
|
* PURPOSE: Secondary Logon service RPC server
|
|
|
|
* COPYRIGHT: Eric Kohl 2022 <eric.kohl@reactos.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SECLOGON_PCH_
|
|
|
|
#define _SECLOGON_PCH_
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2022-01-16 23:59:25 +00:00
|
|
|
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
2022-01-16 16:02:01 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winreg.h>
|
|
|
|
#include <winsvc.h>
|
|
|
|
#include <svc.h>
|
2022-02-21 15:38:29 +00:00
|
|
|
#include <userenv.h>
|
2022-01-16 16:02:01 +00:00
|
|
|
|
2022-01-16 23:59:25 +00:00
|
|
|
#define NTOS_MODE_USER
|
2022-01-16 16:02:01 +00:00
|
|
|
#include <ndk/rtlfuncs.h>
|
|
|
|
|
|
|
|
#include <wine/debug.h>
|
|
|
|
|
|
|
|
extern HINSTANCE hDllInstance;
|
2022-01-17 00:01:57 +00:00
|
|
|
extern PSVCHOST_GLOBAL_DATA lpServiceGlobals;
|
2022-01-16 16:02:01 +00:00
|
|
|
|
|
|
|
DWORD
|
|
|
|
StartRpcServer(VOID);
|
|
|
|
|
|
|
|
DWORD
|
|
|
|
StopRpcServer(VOID);
|
|
|
|
|
|
|
|
#endif /* _SECLOGON_PCH_ */
|