add stub for SetupDiLoadClassIcon Modified: trunk/reactos/lib/setupapi/setupapi.spec Modified: trunk/reactos/lib/setupapi/stubs.c _____
Modified: trunk/reactos/lib/setupapi/setupapi.spec --- trunk/reactos/lib/setupapi/setupapi.spec 2005-11-26 16:46:53 UTC (rev 19644) +++ trunk/reactos/lib/setupapi/setupapi.spec 2005-11-26 16:54:15 UTC (rev 19645) @@ -354,7 +354,7 @@
@ stdcall SetupDiInstallDevice(ptr ptr) @ stdcall SetupDiInstallDeviceInterfaces(ptr ptr) @ stdcall SetupDiInstallDriverFiles(ptr ptr) -@ stub SetupDiLoadClassIcon +@ stdcall SetupDiLoadClassIcon(ptr ptr ptr) @ stub SetupDiMoveDuplicateDevice @ stdcall SetupDiOpenClassRegKey(ptr long) @ stdcall SetupDiOpenClassRegKeyExA(ptr long long str ptr) _____
Modified: trunk/reactos/lib/setupapi/stubs.c --- trunk/reactos/lib/setupapi/stubs.c 2005-11-26 16:46:53 UTC (rev 19644) +++ trunk/reactos/lib/setupapi/stubs.c 2005-11-26 16:54:15 UTC (rev 19645) @@ -255,3 +255,13 @@
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); return FALSE; } + +/********************************************************************** * + * SetupDiLoadClassIcon(SETUPAPI.@) + */ +BOOL WINAPI SetupDiLoadClassIcon(CONST GUID *ClassGuid, HICON *LargeIcon, PINT MiniIconIndex) +{ + FIXME ("Stub %p %p %p\n", ClassGuid, LargeIcon, MiniIconIndex); + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return FALSE; +}