Module: wine Branch: master Commit: 649d0f85ba45870ac9238bfbc4e9233d4d33d5e6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=649d0f85ba45870ac9238bfbc4...
Author: Stefan Leichter Stefan.Leichter@camline.com Date: Thu Dec 29 22:53:17 2011 +0100
setupapi: Add stub for SetupDiGetClassBitmapIndex.
---
dlls/setupapi/setupapi.spec | 2 +- dlls/setupapi/stubs.c | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/dlls/setupapi/setupapi.spec b/dlls/setupapi/setupapi.spec index 7202874..0295532 100644 --- a/dlls/setupapi/setupapi.spec +++ b/dlls/setupapi/setupapi.spec @@ -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) diff --git a/dlls/setupapi/stubs.c b/dlls/setupapi/stubs.c index d4e135e..8a7820e 100644 --- a/dlls/setupapi/stubs.c +++ b/dlls/setupapi/stubs.c @@ -437,6 +437,17 @@ BOOL WINAPI SetupDiDeleteDeviceInfo(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA Dev }
/*********************************************************************** + * 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.@) */ BOOL WINAPI SetupDiLoadClassIcon(const GUID *ClassGuid, HICON *LargeIcon, PINT MiniIconIndex)