mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 12:29:56 +00:00
add stub for SetupDiLoadClassIcon
svn path=/trunk/; revision=19645
This commit is contained in:
parent
aad3fdde87
commit
520fe4b055
2 changed files with 11 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -255,3 +255,13 @@ BOOL WINAPI SetupDiGetClassDevPropertySheetsW(HDEVINFO DeviceInfoSet, PSP_DEVINF
|
|||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue