https://bugs.winehq.org/show_bug.cgi?id=54963
Bug ID: 54963 Summary: Adobe Lightroom needs Windows.Storage.Streams.InMemoryRandomAccessStream Product: Wine Version: 8.8 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: bugs@bzatek.net Distribution: ---
Essentially any newer functionality like the advanced masking and object detection fails on unimplemented InMemoryRandomAccessStream:
0a78:fixme:combase:RoActivateInstance (00007F110172E538, 00007F110172E4F8): semi-stub 0a78:fixme:combase:RoGetActivationFactory (L"Windows.Storage.Streams.InMemoryRandomAccessStream", {00000035-0000-0000-c000-000000000046}, 00007F110172E498): semi-stub 0a78:err:combase:RoGetActivationFactory Failed to find library for L"Windows.Storage.Streams.InMemoryRandomAccessStream"
I haven't managed to find the required library anywhere, any advice appreciated.
https://bugs.winehq.org/show_bug.cgi?id=54963
Vijay Kamuju infyquest@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |infyquest@gmail.com
--- Comment #1 from Vijay Kamuju infyquest@gmail.com --- sent a patch for this, https://gitlab.winehq.org/wine/wine/-/merge_requests/4578
Please check if it works with this.
https://bugs.winehq.org/show_bug.cgi?id=54963
--- Comment #2 from Vijay Kamuju infyquest@gmail.com --- It might remove the fixme, as the actual implementation is not present it might not actually fix the issue.
https://bugs.winehq.org/show_bug.cgi?id=54963
Zeb Figura z.figura12@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |z.figura12@gmail.com
--- Comment #3 from Zeb Figura z.figura12@gmail.com --- (In reply to Vijay Kamuju from comment #1)
sent a patch for this, https://gitlab.winehq.org/wine/wine/-/merge_requests/4578
Please check if it works with this.
All you added was a header; how can that fix anything?
https://bugs.winehq.org/show_bug.cgi?id=54963
--- Comment #4 from Vijay Kamuju infyquest@gmail.com --- (In reply to Zeb Figura from comment #3)
(In reply to Vijay Kamuju from comment #1)
sent a patch for this, https://gitlab.winehq.org/wine/wine/-/merge_requests/4578
Please check if it works with this.
All you added was a header; how can that fix anything?
Please check my comment 2, where I corrected myself
https://bugs.winehq.org/show_bug.cgi?id=54963
--- Comment #5 from Tomáš Bžatek bugs@bzatek.net --- Thanks for your effort, nothing has changed, the missing library messages still all stand. This really needs a proper implementation. Tested against wine-9.0-rc4
https://bugs.winehq.org/show_bug.cgi?id=54963
--- Comment #6 from Vijay Kamuju infyquest@gmail.com --- The definitions are merged but a real implementation is not there yet.
https://bugs.winehq.org/show_bug.cgi?id=54963
--- Comment #7 from Tomáš Bžatek bugs@bzatek.net --- Managed to find what looks like an independent reimplementation of the Storage Stream classes, MIT licensed, though written in C#. Might be a good source of inspiration:
https://github.com/nanoframework/Windows.Storage.Streams