[SETUPAPI] Add missing Vista+ SetupGetInfDriverStoreLocationA, forgotten in Wine.

This commit is contained in:
Hermès Bélusca-Maïto 2023-09-16 21:21:29 +02:00
parent 464db6a985
commit eae8abc505
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 15 additions and 0 deletions

View file

@ -745,6 +745,20 @@ BOOL WINAPI SetupQueryInfOriginalFileInformationW(
#if (_WIN32_WINNT >= _WIN32_WINNT_VISTA) || (DLL_EXPORT_VERSION >= _WIN32_WINNT_VISTA)
/***********************************************************************
* SetupGetInfDriverStoreLocationA (SETUPAPI.@)
*/
BOOL WINAPI SetupGetInfDriverStoreLocationA(
PCSTR FileName, PSP_ALTPLATFORM_INFO AlternativePlatformInfo,
PCSTR LocaleName, PSTR ReturnBuffer, DWORD ReturnBufferSize,
PDWORD RequiredSize)
{
FIXME("stub: %s %p %s %p %u %p\n", debugstr_a(FileName), AlternativePlatformInfo, debugstr_a(LocaleName), ReturnBuffer, ReturnBufferSize, RequiredSize);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* SetupGetInfDriverStoreLocationW (SETUPAPI.@)
*/

View file

@ -408,6 +408,7 @@
@ stdcall SetupGetFileCompressionInfoW(wstr ptr ptr ptr ptr)
@ stdcall SetupGetFileQueueCount(long long ptr)
@ stdcall SetupGetFileQueueFlags(long ptr)
@ stdcall -version=0x600+ SetupGetInfDriverStoreLocationA(str ptr str ptr long ptr)
@ stdcall -version=0x600+ SetupGetInfDriverStoreLocationW(wstr ptr wstr ptr long ptr)
@ stdcall SetupGetInfFileListA(str long str long ptr)
@ stdcall SetupGetInfFileListW(wstr long wstr long ptr)