mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
24 lines
524 B
C
24 lines
524 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 */
|