On Sat Aug 30 13:24:39 2025 +0000, Rémi Bernon wrote:
static HRESULT WINAPI test_inspectable_GetRuntimeClassName( IActivationFactory *iface, HSTRING *name ) { static const WCHAR *nameW = L"Wine.Application.Class"; return WindowsCreateString( nameW, wcslen( nameW ), name ); } static HRESULT WINAPI test_inspectable_GetIids( IActivationFactory *iface, ULONG *count, GUID **iids ) { return E_NOTIMPL; } static HRESULT WINAPI test_inspectable_GetTrustLevel( IActivationFactory *iface, TrustLevel *level ) { return S_OK; }
Missing line. Also, might be interesting to add some tests in them, `ok( 0, "unexpected\n" );` if they aren't supposed to be called.
Thanks.