setupapi: Add stub for SetupDiGetClassBitmapIndex.

This commit is contained in:
Stefan Leichter 2011-12-29 22:53:17 +01:00 committed by Alexandre Julliard
parent 9fc38b7230
commit 649d0f85ba
2 changed files with 12 additions and 1 deletions

View File

@ -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)

View File

@ -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.@)
*/