tst: passthrough: reorg project

This commit is contained in:
Bill Zissimopoulos
2017-01-28 12:34:10 -08:00
parent f97ef5704f
commit 960c627924
6 changed files with 13 additions and 20 deletions

View File

@ -895,7 +895,6 @@ static NTSTATUS WinFspLoad(VOID)
#endif
#define FSP_DLLPATH "bin\\" FSP_DLLNAME
LONG WINAPI __HrLoadAllImportsForDll(CONST CHAR *);
WCHAR PathBuf[MAX_PATH - (sizeof L"" FSP_DLLPATH / sizeof(WCHAR) - 1)];
DWORD Size;
LONG Result;
@ -916,10 +915,6 @@ static NTSTATUS WinFspLoad(VOID)
Module = LoadLibraryW(PathBuf);
if (0 == Module)
return STATUS_DLL_NOT_FOUND;
Result = __HrLoadAllImportsForDll(FSP_DLLNAME);
if (0 > Result)
return STATUS_DELAY_LOAD_FAILED;
}
return STATUS_SUCCESS;