mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 08:23:05 -05:00
dll, memfs: rename FspServiceRun to FspServiceLoop
This commit is contained in:
parent
077bbb0d65
commit
587fee93e9
@ -875,7 +875,7 @@ FSP_API VOID FspServiceAcceptControl(FSP_SERVICE *Service, ULONG Control);
|
||||
FSP_API VOID FspServiceRequestTime(FSP_SERVICE *Service, ULONG Time);
|
||||
FSP_API VOID FspServiceSetExitCode(FSP_SERVICE *Service, ULONG ExitCode);
|
||||
FSP_API ULONG FspServiceGetExitCode(FSP_SERVICE *Service);
|
||||
FSP_API NTSTATUS FspServiceRun(FSP_SERVICE *Service);
|
||||
FSP_API NTSTATUS FspServiceLoop(FSP_SERVICE *Service);
|
||||
FSP_API VOID FspServiceStop(FSP_SERVICE *Service);
|
||||
FSP_API BOOLEAN FspServiceIsInteractive(VOID);
|
||||
FSP_API VOID FspServiceLog(ULONG Type, PWSTR Format, ...);
|
||||
|
@ -178,7 +178,7 @@ FSP_API ULONG FspServiceGetExitCode(FSP_SERVICE *Service)
|
||||
return Service->ServiceStatus.dwWin32ExitCode;
|
||||
}
|
||||
|
||||
FSP_API NTSTATUS FspServiceRun(FSP_SERVICE *Service)
|
||||
FSP_API NTSTATUS FspServiceLoop(FSP_SERVICE *Service)
|
||||
{
|
||||
SERVICE_TABLE_ENTRYW ServiceTable[2];
|
||||
|
||||
|
@ -161,7 +161,7 @@ int wmain(int argc, wchar_t **argv)
|
||||
fatal(L"cannot create service (Status=%lx)", Result);
|
||||
|
||||
FspServiceAllowConsoleMode(Service);
|
||||
Result = FspServiceRun(Service);
|
||||
Result = FspServiceLoop(Service);
|
||||
ExitCode = FspServiceGetExitCode(Service);
|
||||
FspServiceDelete(Service);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user