mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 07:41:51 +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 SetupDiInstallDevice(ptr ptr)
|
||||||
@ stdcall SetupDiInstallDeviceInterfaces(ptr ptr)
|
@ stdcall SetupDiInstallDeviceInterfaces(ptr ptr)
|
||||||
@ stdcall SetupDiInstallDriverFiles(ptr ptr)
|
@ stdcall SetupDiInstallDriverFiles(ptr ptr)
|
||||||
@ stub SetupDiLoadClassIcon
|
@ stdcall SetupDiLoadClassIcon(ptr ptr ptr)
|
||||||
@ stub SetupDiMoveDuplicateDevice
|
@ stub SetupDiMoveDuplicateDevice
|
||||||
@ stdcall SetupDiOpenClassRegKey(ptr long)
|
@ stdcall SetupDiOpenClassRegKey(ptr long)
|
||||||
@ stdcall SetupDiOpenClassRegKeyExA(ptr long long str ptr)
|
@ stdcall SetupDiOpenClassRegKeyExA(ptr long long str ptr)
|
||||||
|
|
|
@ -255,3 +255,13 @@ BOOL WINAPI SetupDiGetClassDevPropertySheetsW(HDEVINFO DeviceInfoSet, PSP_DEVINF
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
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…
Add table
Add a link
Reference in a new issue