[WINESYNC] setupapi: Add stubs SetupQueryDrivesInDiskSpaceList{A,W}.

wine commit id 53aef28e36078f0eb28d925c01a9f81e9aeb94ad by Julius Schwartzenberg <julius.schwartzenberg@gmail.com>
This commit is contained in:
winesync 2024-01-04 19:03:13 +01:00 committed by Hermès Bélusca-Maïto
parent d34d4a61f5
commit c6ea951cc2
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 21 additions and 3 deletions

View file

@ -467,8 +467,8 @@
@ stdcall SetupPromptForDiskA(ptr str str str str str long ptr long ptr)
@ stdcall SetupPromptForDiskW(ptr wstr wstr wstr wstr wstr long ptr long ptr)
@ stdcall SetupPromptReboot(ptr ptr long)
@ stdcall -stub SetupQueryDrivesInDiskSpaceListA(ptr ptr long ptr)
@ stub SetupQueryDrivesInDiskSpaceListW
@ stdcall SetupQueryDrivesInDiskSpaceListA(ptr ptr long ptr)
@ stdcall SetupQueryDrivesInDiskSpaceListW(ptr ptr long ptr)
@ stub SetupQueryFileLogA
@ stub SetupQueryFileLogW
@ stdcall SetupQueryInfFileInformationA(ptr long str long ptr)

View file

@ -62,6 +62,24 @@ BOOL WINAPI SetupAddToSourceListW(DWORD flags, PCWSTR source)
return TRUE;
}
/***********************************************************************
* SetupQueryDrivesInDiskSpaceListA (SETUPAPI.@)
*/
BOOL WINAPI SetupQueryDrivesInDiskSpaceListA(HDSKSPC disk_space, PSTR return_buffer, DWORD return_buffer_size, PDWORD required_size)
{
FIXME("%p, %p, %d, %p\n", disk_space, return_buffer, return_buffer_size, required_size);
return FALSE;
}
/***********************************************************************
* SetupQueryDrivesInDiskSpaceListW (SETUPAPI.@)
*/
BOOL WINAPI SetupQueryDrivesInDiskSpaceListW(HDSKSPC disk_space, PWSTR return_buffer, DWORD return_buffer_size, PDWORD required_size)
{
FIXME("%p, %p, %d, %p\n", disk_space, return_buffer, return_buffer_size, required_size);
return FALSE;
}
/***********************************************************************
* SetupSetSourceListA (SETUPAPI.@)
*/

View file

@ -5,4 +5,4 @@ files:
dlls/setupapi/misc.c: dll/win32/setupapi/misc.c
dlls/setupapi/stubs.c: dll/win32/setupapi/stubs.c
tags:
wine: aaf4ce8ac6d70f19b6bce495d1b580acb61c1c69
wine: 53aef28e36078f0eb28d925c01a9f81e9aeb94ad