mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:23:03 +00:00
[SETUPAPI] Stub implement SetupQueryInfVersionInformation
(#7769)
Sync SetupQueryInfVersionInformation stubs to Wine. The new synced stubs set ERROR_CALL_NOT_IMPLEMENTED as last error and return, rather than raise exception EXCEPTION_WINE_STUB (0x80000100), then the Virtual Box Guest Addition 7.1.6 setup progress can move on.
This commit is contained in:
parent
6c7d2a2e25
commit
7a9c744b70
2 changed files with 20 additions and 2 deletions
|
@ -693,3 +693,21 @@ BOOL WINAPI SetupQueryInfOriginalFileInformationW(
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SetupQueryInfVersionInformationA(SP_INF_INFORMATION *info, UINT index, const char *key, char *buff,
|
||||||
|
DWORD size, DWORD *req_size)
|
||||||
|
{
|
||||||
|
FIXME("info %p, index %d, key %s, buff %p, size %ld, req_size %p stub!\n", info, index, debugstr_a(key), buff,
|
||||||
|
size, req_size);
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SetupQueryInfVersionInformationW(SP_INF_INFORMATION *info, UINT index, const WCHAR *key, WCHAR *buff,
|
||||||
|
DWORD size, DWORD *req_size)
|
||||||
|
{
|
||||||
|
FIXME("info %p, index %d, key %s, buff %p, size %ld, req_size %p stub!\n", info, index, debugstr_w(key), buff,
|
||||||
|
size, req_size);
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
|
@ -475,8 +475,8 @@
|
||||||
@ stdcall SetupQueryInfFileInformationW(ptr long wstr long ptr)
|
@ stdcall SetupQueryInfFileInformationW(ptr long wstr long ptr)
|
||||||
@ stdcall SetupQueryInfOriginalFileInformationA(ptr long ptr ptr)
|
@ stdcall SetupQueryInfOriginalFileInformationA(ptr long ptr ptr)
|
||||||
@ stdcall SetupQueryInfOriginalFileInformationW(ptr long ptr ptr)
|
@ stdcall SetupQueryInfOriginalFileInformationW(ptr long ptr ptr)
|
||||||
@ stub SetupQueryInfVersionInformationA
|
@ stdcall SetupQueryInfVersionInformationA(ptr long str ptr long ptr)
|
||||||
@ stub SetupQueryInfVersionInformationW
|
@ stdcall SetupQueryInfVersionInformationW(ptr long wstr ptr long ptr)
|
||||||
@ stub SetupQuerySourceListA
|
@ stub SetupQuerySourceListA
|
||||||
@ stub SetupQuerySourceListW
|
@ stub SetupQuerySourceListW
|
||||||
@ stdcall SetupQuerySpaceRequiredOnDriveA(long str ptr ptr long)
|
@ stdcall SetupQuerySpaceRequiredOnDriveA(long str ptr ptr long)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue