reactos/dll/win32/lsasrv/service.c
Amine Khaldi 0ee830d7a4 * Create a branch for USB experiments.
svn path=/branches/usb-experiments/; revision=72629
2016-09-09 15:11:19 +00:00

24 lines
No EOL
523 B
C

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