[Bug 47375] Photoshop C 2018 crashes on unimplemented function msvcr120.dll.?_Schedule at _StructuredTaskCollection@details at Concurrency@@QEAAXPEAV_UnrealizedChore at 23@@Z

WineHQ Bugzilla wine-bugs at winehq.org
Tue Sep 8 05:05:41 CDT 2020


https://bugs.winehq.org/show_bug.cgi?id=47375

John Chadwick <john at jchw.io> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |john at jchw.io

--- Comment #3 from John Chadwick <john at jchw.io> ---
At least for Clip Studio Paint, a couple of quick stubs gets the program
running.

    DEFINE_THISCALL_WRAPPER(_StructuredTaskCollection__Schedule, 8)
    void __thiscall _StructuredTaskCollection__Schedule(void *this, void
*unrealized_chore)
    {
        FIXME("(%p) stub\n", unrealized_chore);
    }

    DEFINE_THISCALL_WRAPPER(_StructuredTaskCollection__RunAndWait, 8)
    int __thiscall _StructuredTaskCollection__RunAndWait(void *this, void
*unrealized_chore)
    {
        FIXME("(%p) stub\n", unrealized_chore);
        return 0;
    }

Perhaps it would be worth considering? An actual implementation of concrt
functionality would be challenging.

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list