30 Aug
2025
30 Aug
'25
1:24 p.m.
Rémi Bernon (@rbernon) commented about dlls/windows.applicationmodel/tests/application.c:
+ if (!wcscmp( buffer, L"Wine.Application.Class" )) + return IActivationFactory_QueryInterface( &test_factory_impl.IActivationFactory_iface, &IID_IActivationFactory, (void **)factory ); + + return CLASS_E_CLASSNOTAVAILABLE; +} + +HRESULT WINAPI DllCanUnloadNow(void) +{ + return S_OK; +} + +HRESULT WINAPI DllGetClassObject(REFCLSID clsid, REFIID riid, void **out) +{ + return CLASS_E_CLASSNOTAVAILABLE; +} + Are these even required?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8859#note_114293