https://bugs.winehq.org/show_bug.cgi?id=47072
--- Comment #7 from Louis Lenders xerox.xerox2000x@gmail.com ---
Thank you. You need to install msxml3 and dotnet45. Also, on a 32 bit arch.
Hi, I also tried to start the application itsself, but it bails out with ''Insuffictient Memory``. With native gdiplus or the hack below its starts for me.
I will open a new bugreport for that, but it would be nice to know if you can confirm that; I only have 4GB memory, an I don`t know what the specs for this program are, so not 100% sure how valid this bug is. However because native gdiplus works around it it`s still valid bug???
hack:
diff --git a/dlls/gdiplus/region.c b/dlls/gdiplus/region.c index 470bcd20ce..218f1bf85d 100644 --- a/dlls/gdiplus/region.c +++ b/dlls/gdiplus/region.c @@ -1041,7 +1041,7 @@ static GpStatus get_path_hrgn(GpPath *path, GpGraphics *graphics, HRGN *hrgn) if (stat == Ok) { *hrgn = PathToRegion(graphics->hdc); - stat = *hrgn ? Ok : OutOfMemory; + // stat = *hrgn ? Ok : OutOfMemory; }
gdi_transform_release(graphics);