From: Ignacy Kuchciński <ignacykuchcinski(a)gmail.com> --- dlls/combase/roapi.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dlls/combase/roapi.c b/dlls/combase/roapi.c index df3a3c5c176..0585ddb1758 100644 --- a/dlls/combase/roapi.c +++ b/dlls/combase/roapi.c @@ -167,6 +167,11 @@ HRESULT WINAPI DECLSPEC_HOTPATCH RoGetActivationFactory(HSTRING classid, REFIID return hr; } + if (strcmp(debugstr_hstring(classid), "L\"Windows.Storage.StorageFile\"") == 0) + { + library = L"C:\\windows\\system32\\windows.storage.dll"; + } + if (!(module = LoadLibraryW(library))) { ERR("Failed to load module %s\n", debugstr_w(library)); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8394