mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
setupapi: Add a stub for SetupDiLoadClassIcon.
This commit is contained in:
parent
1b7a3dae6e
commit
aaf4ce8ac6
@ -363,7 +363,7 @@
|
||||
@ stdcall SetupDiInstallClassW(long wstr long ptr)
|
||||
@ stub SetupDiInstallDevice
|
||||
@ stub SetupDiInstallDriverFiles
|
||||
@ stub SetupDiLoadClassIcon
|
||||
@ stdcall SetupDiLoadClassIcon(ptr ptr ptr)
|
||||
@ stub SetupDiMoveDuplicateDevice
|
||||
@ stdcall SetupDiOpenClassRegKey(ptr long)
|
||||
@ stdcall SetupDiOpenClassRegKeyExA(ptr long long str ptr)
|
||||
|
@ -417,3 +417,14 @@ BOOL WINAPI SetupDiDeleteDeviceInfo(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA Dev
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiLoadClassIcon (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiLoadClassIcon(const GUID *ClassGuid, HICON *LargeIcon, PINT MiniIconIndex)
|
||||
{
|
||||
FIXME(": stub %s, %p, %p\n", debugstr_guid(ClassGuid), LargeIcon, MiniIconIndex);
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user