setupapi: Add stub for SetupDiDrawMiniIcon.
This commit is contained in:
parent
649d0f85ba
commit
8fc7a01a2c
|
@ -304,7 +304,7 @@
|
|||
@ stdcall SetupDiDestroyClassImageList(ptr)
|
||||
@ stdcall SetupDiDestroyDeviceInfoList(long)
|
||||
@ stub SetupDiDestroyDriverInfoList
|
||||
@ stub SetupDiDrawMiniIcon
|
||||
@ stdcall SetupDiDrawMiniIcon(ptr int128 long long)
|
||||
@ stdcall SetupDiEnumDeviceInfo(long long ptr)
|
||||
@ stdcall SetupDiEnumDeviceInterfaces(long ptr ptr long ptr)
|
||||
@ stub SetupDiEnumDriverInfoA
|
||||
|
|
|
@ -436,6 +436,17 @@ BOOL WINAPI SetupDiDeleteDeviceInfo(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA Dev
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiDrawMiniIcon (SETUPAPI.@)
|
||||
*/
|
||||
INT WINAPI SetupDiDrawMiniIcon(HDC hdc, RECT rc, INT MiniIconIndex, DWORD Flags)
|
||||
{
|
||||
FIXME("(%p, %s, %d, %x) stub\n", hdc, wine_dbgstr_rect(&rc), MiniIconIndex, Flags);
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiGetClassBitmapIndex (SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue