inc: winfsp.h: FspLoad

This commit is contained in:
Bill Zissimopoulos
2017-01-31 16:07:50 -08:00
parent acf6ce1008
commit 7425eba8af
4 changed files with 10 additions and 4 deletions

View File

@ -525,5 +525,5 @@ static int maperror(int winerrno)
long WinFspLoad(void)
{
return FspLoad();
return FspLoad(0);
}

View File

@ -918,7 +918,7 @@ static NTSTATUS SvcStop(FSP_SERVICE *Service)
int wmain(int argc, wchar_t **argv)
{
if (!NT_SUCCESS(FspLoad()))
if (!NT_SUCCESS(FspLoad(0)))
return ERROR_DELAY_LOAD_FAILED;
return FspServiceRun(L"" PROGNAME, SvcStart, SvcStop, 0);