https://bugs.winehq.org/show_bug.cgi?id=47375
John Chadwick john@jchw.io changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |john@jchw.io
--- Comment #3 from John Chadwick john@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.