mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
[SETUPAPI] Add missing Vista+ SetupGetInfDriverStoreLocationA, forgotten in Wine.
This commit is contained in:
parent
f554e58231
commit
1d439f4706
2 changed files with 15 additions and 0 deletions
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue