mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:16:04 +00:00
[NETLOGON] Add the netlogon service.
This commit is contained in:
parent
ec14b4c50a
commit
78600cf223
7 changed files with 1079 additions and 0 deletions
34
base/services/netlogon/precomp.h
Normal file
34
base/services/netlogon/precomp.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* PROJECT: ReactOS NetLogon Service
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: NetLogon service RPC server
|
||||
* COPYRIGHT: Eric Kohl 2019 <eric.kohl@reactos.org>
|
||||
*/
|
||||
|
||||
#ifndef _NETLOGON_PCH_
|
||||
#define _NETLOGON_PCH_
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
#include <limits.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winreg.h>
|
||||
#include <winsvc.h>
|
||||
#include <lmerr.h>
|
||||
|
||||
#include <netlogon_s.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
|
||||
extern HINSTANCE hDllInstance;
|
||||
|
||||
DWORD
|
||||
WINAPI
|
||||
RpcThreadRoutine(
|
||||
LPVOID lpParameter);
|
||||
|
||||
#endif /* _NETLOGON_PCH_ */
|
Loading…
Add table
Add a link
Reference in a new issue