[Bug 45832] Windower 5 beta (Final Fantasy XI tool) Security Token Exception

wine-bugs at winehq.org wine-bugs at winehq.org
Sat Sep 15 18:43:59 CDT 2018


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

Louis Lenders <xerox.xerox2000x at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |http://files.windower.net/5
                   |                            |/core/test/windower.portabl
                   |                            |e.zip
           Keywords|                            |download

--- Comment #4 from Louis Lenders <xerox.xerox2000x at gmail.com> ---
Hi thanks for reporting back

I still get a different error when trying to start in a new WINEPREFIX .

However, the application seems to need PresentationFramework so Mono is not
going to work here anyway.

I ran in a WINEPREFIX where I had dotnet472 installed and then it crashes
apparently because of bug in dwmapi. Disabling dwmapi makes a window appear
that is unfortunately black. However, using wine-staging 3.15 and disabling
dwampi makes the window come up, telling me i don`t have Final Fantasy
installed

To summarize:

Could you try 

winetricks -q dotnet472

WINEDLLOVERRIDES=dwmapi=d wine windower.exe launch

(if window is black, try Staging)

I post hack hereafter that prevents the app from crashing, when dwmapi is not
disabled:

diff --git a/dlls/dwmapi/dwmapi_main.c b/dlls/dwmapi/dwmapi_main.c
index 0e6ba3bed1..bf8c670328 100644
--- a/dlls/dwmapi/dwmapi_main.c
+++ b/dlls/dwmapi/dwmapi_main.c
@@ -82,7 +82,7 @@ HRESULT WINAPI DwmExtendFrameIntoClientArea(HWND hwnd, const
MARGINS* margins)
 {
     FIXME("(%p, %p) stub\n", hwnd, margins);

-    return E_NOTIMPL;
+    return 0;E_NOTIMPL;
 }

 /**********************************************************************

-- 
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