Program hangs with "LISTVIEW_WindowProc unknown msg&quo

Questions about Wine on Linux
Locked
rosros
Level 1
Level 1
Posts: 5
Joined: Sat May 05, 2012 9:20 am

Program hangs with "LISTVIEW_WindowProc unknown msg&quo

Post by rosros »

Program: "Ultra Fractal 5"
Downloadable from: http://www.ultrafractal.com
Wine version: 1.4
Linux: Ubuntu 12.04 LTS

Terminal output:
fixme:system:SetProcessDPIAware stub!
err:listview:LISTVIEW_WindowProc unknown msg 108c wp=00000000 lp=00000000
fixme:console:CONSOLE_DefaultHandler Terminating process 8 on event 0

Ultra Fractal 5 (or even X) hangs after "LISTVIEW_WindowProc unknown msg 108c".
No wine configuration change (but I tried native comdlg.dll, with the same result).
BTW: I (patched for my system and) recompiled wine 1.1.34,
compilation was successful; I then ran wine from the build dir,
and got the same message (among others).
mogorva
Level 4
Level 4
Posts: 107
Joined: Fri Oct 16, 2009 10:27 am

Post by mogorva »

Native comctl32.dll should help to work around the problem.

A bug report has been filed:
http://bugs.winehq.org/show_bug.cgi?id=30604
rosros
Level 1
Level 1
Posts: 5
Joined: Sat May 05, 2012 9:20 am

Post by rosros »

Thanks for the bug report. I tried comclt32 (Native, Builtin) without success.
I suspect this bug affects all the applications where the
procedure LISTVIEW_WindowProc (thumbnailer (?)) is called and the
msg 108c issued.
mogorva
Level 4
Level 4
Posts: 107
Joined: Fri Oct 16, 2009 10:27 am

Post by mogorva »

Did you use winetricks to install comctl32 properly?
rosros
Level 1
Level 1
Posts: 5
Joined: Sat May 05, 2012 9:20 am

Post by rosros »

Can you provide a link on the proper installation of dlls by means of wintricks?
BTW just replacing the comdlg32.dll in ~/.wine/drive_c/windows/system32 is not successful (the error message is the same).
mogorva
Level 4
Level 4
Posts: 107
Joined: Fri Oct 16, 2009 10:27 am

Post by mogorva »

You mix up comdlg32 and comctl32. They're not the same.

Here you can get winetricks as well as read about the usage of it:
http://wiki.winehq.org/winetricks

Code: Select all

winetricks comctl32
is what you need.
rosros
Level 1
Level 1
Posts: 5
Joined: Sat May 05, 2012 9:20 am

Post by rosros »

OK. Thanks, I'll have a look at it.
In the meantime I compiled successfully wine-1.5.3.
The outcome is the same, so wine-1.5.3 is also affected.
---------------
rr@Aspire5230:~/Windows/uf5exe$ ~/wine-1.5.3/loader/wine --version
wine-1.5.3
rr@Aspire5230:~/Windows/uf5exe$ cat ufwine-1.5.3
export WINEPREFIX=~/.wine-1.5.3
export WINESERVER=~/wine-1.5.3/server/wineserver
export WINELOADER=~/wine-1.5.3/loader/wine
~/wine-1.5.3/loader/wine Uf5.exe
rr@Aspire5230:~/Windows/uf5exe$ ufwine-1.5.3
fixme:system:SetProcessDPIAware stub!
err:listview:LISTVIEW_WindowProc unknown msg 108c wp=00000000 lp=00000000
^C
fixme:console:CONSOLE_DefaultHandler Terminating process 8 on event 0
--------------------
rosros
Level 1
Level 1
Posts: 5
Joined: Sat May 05, 2012 9:20 am

SOLVED

Post by rosros »

winetricks comctl32 "did the trick".
now 'Ultra Fractal 5" works with wine-1.4.
Thanks a lot!
mogorva
Level 4
Level 4
Posts: 107
Joined: Fri Oct 16, 2009 10:27 am

Post by mogorva »

The latest git version (wine-1.5.3-264-gde9d18c) already contains the fix for the problem.
http://source.winehq.org/git/wine.git/c ... e08550152f
Locked