[WINESYNC] setupapi: Add stub for SetupDiGetClassBitmapIndex.

wine commit id 649d0f85ba45870ac9238bfbc4e9233d4d33d5e6 by Stefan Leichter <Stefan.Leichter@camline.com>
This commit is contained in:
winesync 2024-01-04 21:48:43 +01:00 committed by Hermès Bélusca-Maïto
parent cb0ee40890
commit 237a8a8550
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 13 additions and 2 deletions

View file

@ -296,7 +296,7 @@
@ stdcall SetupDiGetActualSectionToInstallExA(long str ptr str long ptr ptr ptr)
@ stdcall SetupDiGetActualSectionToInstallExW(long wstr ptr wstr long ptr ptr ptr)
@ stdcall SetupDiGetActualSectionToInstallW(long wstr wstr long ptr ptr)
@ stub SetupDiGetClassBitmapIndex
@ stdcall SetupDiGetClassBitmapIndex(ptr ptr)
@ stdcall SetupDiGetClassDescriptionA(ptr str long ptr)
@ stdcall SetupDiGetClassDescriptionExA(ptr str long ptr str ptr)
@ stdcall SetupDiGetClassDescriptionExW(ptr wstr long ptr wstr ptr)

View file

@ -143,6 +143,17 @@ BOOL WINAPI SetupLogFileA(
return FALSE;
}
/***********************************************************************
* SetupDiGetClassBitmapIndex (SETUPAPI.@)
*/
BOOL WINAPI SetupDiGetClassBitmapIndex(const GUID *ClassGuid, PINT MiniIconIndex)
{
FIXME("(%s, %p) stub\n", debugstr_guid(ClassGuid), MiniIconIndex);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* SetupDiRemoveDeviceInterface (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: f9c8afd320a71ed4a04fbbd199844738a84068b5
wine: 649d0f85ba45870ac9238bfbc4e9233d4d33d5e6