setupapi: Add SetupGetInfDriverStoreLocationW stub.

Signed-off-by: Derek Lesho <dlesho@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Derek Lesho 2019-11-18 16:20:12 -06:00 committed by Alexandre Julliard
parent e8ef4c0f53
commit f1b94dc16c
2 changed files with 15 additions and 0 deletions

View File

@ -717,3 +717,17 @@ BOOL WINAPI SetupQueryInfOriginalFileInformationW(
return TRUE;
}
/***********************************************************************
* SetupGetInfDriverStoreLocationW (SETUPAPI.@)
*/
BOOL WINAPI SetupGetInfDriverStoreLocationW(
PCWSTR FileName, PSP_ALTPLATFORM_INFO AlternativePlatformInfo,
PCWSTR LocaleName, PWSTR ReturnBuffer, DWORD ReturnBufferSize,
PDWORD RequiredSize)
{
FIXME("stub: %s %p %s %p %u %p\n", debugstr_w(FileName), AlternativePlatformInfo, debugstr_w(LocaleName), ReturnBuffer, ReturnBufferSize, RequiredSize);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}

View File

@ -421,6 +421,7 @@
@ stdcall SetupGetFileCompressionInfoW(wstr ptr ptr ptr ptr)
@ stdcall SetupGetFileQueueCount(long long ptr)
@ stdcall SetupGetFileQueueFlags(long ptr)
@ stdcall SetupGetInfDriverStoreLocationW(wstr ptr wstr ptr long ptr)
@ stdcall SetupGetInfFileListA(str long ptr long ptr)
@ stdcall SetupGetInfFileListW(wstr long ptr long ptr)
@ stdcall SetupGetInfInformationA(ptr long ptr long ptr)