Move ServiceInit() into a separate file.

svn path=/trunk/; revision=72141
This commit is contained in:
Eric Kohl 2016-08-06 17:07:59 +00:00
parent 3027d2e22f
commit e6597810f6
3 changed files with 25 additions and 8 deletions

View file

@ -21,6 +21,7 @@ list(APPEND SOURCE
privileges.c
registry.c
security.c
service.c
session.c
srm.c
utils.c

View file

@ -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)
{
return RtlAllocateHeap(RtlGetProcessHeap(), HEAP_ZERO_MEMORY, len);

View 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 */