22 Mar
2023
22 Mar
'23
7:55 a.m.
Rémi Bernon (@rbernon) commented about dlls/windows.ui/uisettings.c:
+{ + FIXME( "iface %p, iid_count %p, iids %p stub!\n", iface, iid_count, iids ); + return E_NOTIMPL; +} + +static HRESULT WINAPI uisettings2_GetRuntimeClassName(IUISettings2 *iface, HSTRING *class_name) +{ + FIXME( "iface %p, class_name %p stub!\n", iface, class_name ); + return E_NOTIMPL; +} + +static HRESULT WINAPI uisettings2_GetTrustLevel(IUISettings2 *iface, TrustLevel *trust_level) +{ + FIXME( "iface %p, trust_level %p stub!\n", iface, trust_level ); + return E_NOTIMPL; +} Same here, you could use `DEFINE_IINSPECTABLE` to save all these lines.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2465#note_27494