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:
parent
e8ef4c0f53
commit
f1b94dc16c
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue