March 27, 2026
8:59 a.m.
Rémi Bernon (@rbernon) commented about dlls/iyuv_32/iyuv.c:
+ + return ICERR_UNSUPPORTED; +} + +static LRESULT IYUV_GetInfo( ICINFO *icinfo, DWORD dwSize ) +{ + FIXME("ICM_GETINFO %p %lu\n", icinfo, dwSize); + + return ICERR_UNSUPPORTED; +} + +/*********************************************************************** + * DriverProc (IYUV_32.@) + */ +LRESULT WINAPI IYUV_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg, + LPARAM lParam1, LPARAM lParam2 ) We shouldn't use Hungarian notation for new code. Also lets start with a consistent code style across the file, there are various spacing differences.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/10467#note_133987