mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:13:08 +00:00
24 lines
523 B
C
24 lines
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 */
|