Rémi Bernon (@rbernon) commented about dlls/windows.ui/uisettings.c:
+{ + 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; +} + +static HRESULT WINAPI uisettings2_get_TextScaleFactor(IUISettings2 *iface,DOUBLE *value) +{ + FIXME( "iface %p, value %p stub!\n", iface, value ); + *value = 1.0; + return S_OK; The stub should return `E_NOTIMPL` first, then a test would be welcome to validate that 1.0 and S_OK are sensible return values.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2465#note_27495