[WINESYNC] setupapi: Add stub for SetupDiDrawMiniIcon.

wine commit id 8fc7a01a2c4f023672f34d907be607d6e5948f0e by Stefan Leichter <Stefan.Leichter@camline.com>
This commit is contained in:
winesync 2024-01-04 21:55:22 +01:00 committed by Hermès Bélusca-Maïto
parent 237a8a8550
commit 942e02e6a3
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 13 additions and 2 deletions

View file

@ -285,7 +285,7 @@
@ stdcall SetupDiDestroyClassImageList(ptr)
@ stdcall SetupDiDestroyDeviceInfoList(long)
@ stdcall SetupDiDestroyDriverInfoList(long ptr long)
@ stub SetupDiDrawMiniIcon
@ stdcall SetupDiDrawMiniIcon(ptr int128 long long)
@ stdcall SetupDiEnumDeviceInfo(long long ptr)
@ stdcall SetupDiEnumDeviceInterfaces(long ptr ptr long ptr)
@ stdcall SetupDiEnumDriverInfoA(long ptr long long ptr)

View file

@ -143,6 +143,17 @@ BOOL WINAPI SetupLogFileA(
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.@)
*/

View file

@ -5,4 +5,4 @@ files:
dlls/setupapi/misc.c: dll/win32/setupapi/misc.c
dlls/setupapi/stubs.c: dll/win32/setupapi/stubs.c
tags:
wine: 649d0f85ba45870ac9238bfbc4e9233d4d33d5e6
wine: 8fc7a01a2c4f023672f34d907be607d6e5948f0e