setupapi: Add stub for SetupDiGetClassBitmapIndex.
This commit is contained in:
parent
9fc38b7230
commit
649d0f85ba
|
@ -311,7 +311,7 @@
|
|||
@ stub SetupDiEnumDriverInfoW
|
||||
@ stdcall SetupDiGetActualSectionToInstallA(long str str long 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)
|
||||
|
|
|
@ -436,6 +436,17 @@ BOOL WINAPI SetupDiDeleteDeviceInfo(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA Dev
|
|||
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;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiLoadClassIcon (SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue