From 43101dfe06e5ca19dbb833fe4e78773e24c09917 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Sun, 29 Jul 2018 10:52:01 -0700 Subject: [PATCH] dll: fuse: improve service start/stop messaging --- src/dll/fuse/fuse_loop.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/dll/fuse/fuse_loop.c b/src/dll/fuse/fuse_loop.c index bae87be5..1dd13119 100644 --- a/src/dll/fuse/fuse_loop.c +++ b/src/dll/fuse/fuse_loop.c @@ -23,9 +23,19 @@ static INIT_ONCE fsp_fuse_svconce = INIT_ONCE_STATIC_INIT; static HANDLE fsp_fuse_svcthread; +static NTSTATUS fsp_fuse_svcstart(FSP_SERVICE *Service, ULONG argc, PWSTR *argv) +{ + return STATUS_SUCCESS; +} + +static NTSTATUS fsp_fuse_svcstop(FSP_SERVICE *Service) +{ + return STATUS_SUCCESS; +} + static DWORD WINAPI fsp_fuse_svcmain(PVOID Context) { - return FspServiceRun(FspDiagIdent(), 0, 0, 0); + return FspServiceRun(FspDiagIdent(), fsp_fuse_svcstart, fsp_fuse_svcstop, 0); } static BOOL WINAPI fsp_fuse_svcinit(