mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[LSASRV]
Move ServiceInit() into a separate file. svn path=/trunk/; revision=72141
This commit is contained in:
parent
3027d2e22f
commit
e6597810f6
3 changed files with 25 additions and 8 deletions
|
@ -21,6 +21,7 @@ list(APPEND SOURCE
|
||||||
privileges.c
|
privileges.c
|
||||||
registry.c
|
registry.c
|
||||||
security.c
|
security.c
|
||||||
|
service.c
|
||||||
session.c
|
session.c
|
||||||
srm.c
|
srm.c
|
||||||
utils.c
|
utils.c
|
||||||
|
|
|
@ -208,14 +208,6 @@ LsapInitLsa(VOID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS WINAPI
|
|
||||||
ServiceInit(VOID)
|
|
||||||
{
|
|
||||||
TRACE("ServiceInit() called\n");
|
|
||||||
return STATUS_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void __RPC_FAR * __RPC_USER midl_user_allocate(SIZE_T len)
|
void __RPC_FAR * __RPC_USER midl_user_allocate(SIZE_T len)
|
||||||
{
|
{
|
||||||
return RtlAllocateHeap(RtlGetProcessHeap(), HEAP_ZERO_MEMORY, len);
|
return RtlAllocateHeap(RtlGetProcessHeap(), HEAP_ZERO_MEMORY, len);
|
||||||
|
|
24
reactos/dll/win32/lsasrv/service.c
Normal file
24
reactos/dll/win32/lsasrv/service.c
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* PROJECT: Local Security Authority Server DLL
|
||||||
|
* LICENSE: GPL - See COPYING in the top level directory
|
||||||
|
* FILE: dll/win32/lsasrv/service.c
|
||||||
|
* PURPOSE: Main file
|
||||||
|
* COPYRIGHT: Copyright 2016 Eric Kohl
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* INCLUDES ****************************************************************/
|
||||||
|
|
||||||
|
#include "lsasrv.h"
|
||||||
|
|
||||||
|
/* FUNCTIONS ***************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
NTSTATUS
|
||||||
|
WINAPI
|
||||||
|
ServiceInit(VOID)
|
||||||
|
{
|
||||||
|
TRACE("ServiceInit() called\n");
|
||||||
|
return STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* EOF */
|
Loading…
Reference in a new issue