http://bugs.winehq.com/show_bug.cgi?id=1272
------- Additional Comments From dclark(a)akamail.com 2003-02-10 12:35 -------
It was quick because I have been using this patch for quite awhile now :-) It
was even submitted to CVS, but rejected:
http://www.winehq.com/hypermail/wine-devel/2002/08/0360.html
I guess maybe an attempt needs to be made to figure out the right fix.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1272
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-10 12:10 -------
OK, *my* issue is not quite a bug.
My Win98SE copy has horribly negative values for almost all WindowMetrics keys,
so Wine picks up these values and uses them in an uncorrected manner.
I'll try to find out what Windows does in case of negative values, and I'll
change Wine to handle that if required.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1272
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-10 11:47 -------
Whoa, that was fast!
I've also been looking at this bug, and I found something different:
I have used Win98 notepad.exe in a desktopified Wine environment for testing.
I started it, minimized notepad, and watched in amazement as it totally
disappeared (no icon anywhere!).
So in fact I uncovered a second bug while investigating that bug. Cool, huh?
Call trace:
X11DRV_ShowWindow
WINPOS_MinMaximize(hwnd, SW_MINIMIZE, &newPos)
GetWindowPlacement(hwnd, &wpl)
WINPOS_InitInternalPos()
WINPOS_FindIconPos(wndPtr, wp l.ptMinPosition [-1, -1]);
(rectParent 0/0 - 1400/1050: desktop window!)
SetRect(newPos, wpl.ptMaxPosition.x, wpl.ptMaxPosition.y,
GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON); --> 21/1596 - 32/32
---> WAY below
Wine Desktop window!!!!
What seems to happen is that WINPOS_InitInternalPos returns -1, -1
(no position information stored yet for window).
WINPOS_FindIconPos can't deal with -1, -1 properly, it seems.
I tried your patch to check whether it'd also fix this issue,
but it doesn't.
Any idea about my problem?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1272
------- Additional Comments From dclark(a)akamail.com 2003-02-10 11:17 -------
I can never figure out how to download those attachments. Anyway, try this
patch, which fixes the exact same symptom on another app for me. Watch out for
word wrap.
Index: dlls/x11drv/winpos.c
===================================================================
RCS file: /home/wine/wine/dlls/x11drv/winpos.c,v
retrieving revision 1.63
diff -u -r1.63 winpos.c
--- dlls/x11drv/winpos.c 8 Jan 2003 21:09:26 -0000 1.63
+++ dlls/x11drv/winpos.c 14 Jan 2003 03:02:14 -0000
@@ -1345,8 +1345,7 @@
if (!(win = WIN_GetPtr( hwnd ))) return;
- if ((win->dwStyle & WS_VISIBLE) &&
- (win->dwStyle & WS_MINIMIZE) &&
+ if ((win->dwStyle & WS_MINIMIZE) &&
(win->dwExStyle & WS_EX_MANAGED))
{
int x, y;
@@ -1373,7 +1372,10 @@
WIN_SetStyle( hwnd, style );
WIN_ReleasePtr( win );
- SendMessageA( hwnd, WM_SHOWWINDOW, SW_RESTORE, 0 );
+ /* The SW_SHOW is needed if WS_VISIBLE is false. It will trigger
+ X11DRV_ShowWindow, and pass the SW_SHOW parameter. Otherwise, it
+ does not hurt anything. */
+ SendMessageA( hwnd, WM_SHOWWINDOW, SW_RESTORE, SW_SHOW );
SetWindowPos( hwnd, 0, rect.left, rect.top, rect.right-rect.left, rect.
bottom-rect.top,
SWP_NOZORDER | SWP_WINE_NOHOSTMOVE );
}
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1254
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-10 09:24 -------
Errrrm, actually, with the patch I sent the other day, it seems to work fine now.
(last time I tried, I did not check the 'Fullscreen' box and it seems it's the
only one that shows OpenGL in it).
I was not able to actually play it due to the dinput bug (so I do not resolve
the bug right now), but now one can choose the OpenGL menu entry in the Video
option menu.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1254>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=803
------- Additional Comments From q(a)galgenberg.net 2003-02-10 07:14 -------
Hi, I did try VirtualDub some time ago, but I couldn't get it to recognize any installed codecs (pretty useless then). Well, since I'm desperatly trying to get Diablo&Starcraft to work under Wine+FreeBSD I thought that I should first try to close existing bugs with Wine+FreeBSD.
Anyways, here's the current situation: Wine 20030115 and FreeBSD 4.7-STABLE, I installed Win98SE and added all the necessary codecs and installed Diablo and Starcraft there. When running Virtualdub with the stock configfile included I get this error:
fixme:cdrom:CDROM_GetIdeInterface not implemented for BSD
fixme:reg:GetSystemInfo not yet supported on this system
fixme:mmsys:WMMMidiRunOnce16 (), stub!
err:winmm:MMDRV_InitPerType Strange: mapper with 8 > 1 devices
err:thunk:_loadthunk (USER.EXE, UsrMpr_ThunkData16, MPR.DLL): Bad magic fUh (should be SL01)
err:thunk:_loadthunk (USER.EXE, UsrMpr_ThunkData16, MPR.DLL): Bad magic fUh (should be SL01)
(Exit Code 133)
Ok, specifying to load the builtin mpr.dll and starting VirtualDub _for the first time_ resulted in this:
fixme:cdrom:CDROM_GetIdeInterface not implemented for BSD
fixme:reg:GetSystemInfo not yet supported on this system
fixme:mmsys:WMMMidiRunOnce16 (), stub!
err:winmm:MMDRV_InitPerType Strange: mapper with 8 > 1 devices
fixme:file:DeviceIo_MMDEVLDR (5,0x0,0,0x283b2bdc,4,0x28622e18,0x0): stub
fixme:gdi:Escape16 unknown/unsupported 16-bit escape c03 (56,0x28632f3e,0x28632f86
fixme:gdi:Escape16 unknown/unsupported 16-bit escape c03 (56,0x28632f3e,0x28632f86
fixme:x11drv:X11DRV_GetDeviceCaps (0xafc): CAPS1 is unimplemented, will return 0
fixme:hook:NotifyWinEvent (32780,0x30029,-4,1)-stub!
fixme:process:CreateProcessA (C:\windows\SYSTEM\DDHELP.EXE,...): NORMAL_PRIORITY_CLASS ignored
fixme:cdrom:CDROM_GetIdeInterface not implemented for BSD
fixme:cdrom:CDROM_GetIdeInterface not implemented for BSD
fixme:cdrom:CDROM_GetIdeInterface not implemented for BSD
fixme:reg:GetSystemInfo not yet supported on this system
fixme:x11drv:X11DRV_GetDeviceCaps (0xafc): CAPS1 is unimplemented, will return 0
fixme:mmsys:WMMMidiRunOnce16 (), stub!
err:winmm:MMDRV_InitPerType Strange: mapper with 8 > 1 devices
fixme:x11drv:X11DRV_GetDeviceCaps (0x74): CAPS1 is unimplemented, will return 0
GetModuleHandleA succeed
LoadLibrary returns baaa0000
fixme:system:EnumDisplayDevicesA (0x0,0,0x286226e8,0x00000000), stub!
wine: Unhandled exception, starting debugger...
Warning: L"/usr/bin/winedbg.exe" not accessible from a configured DOS drive
Warning: L"/usr/bin/winedbg" not accessible from a configured DOS drive
Warning: L"/usr/bin/winedbg 134705408.exe" not accessible from a configured DOS drive
Warning: L"/usr/bin/winedbg 134705408" not accessible from a configured DOS drive
Warning: L"/usr/bin/winedbg 134705408 152.exe" not accessible from a configured DOS drive
Warning: L"/usr/bin/winedbg 134705408 152" not accessible from a configured DOS drive
err:seh:start_debugger Couldn't start debugger ("/usr/bin/winedbg 134705408 152") (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr 0x28e9990e
err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr 0x28e9990e
[1000 more lines of the same error]
zsh: 30788 illegal hardware instruction (core dumped) wine --dll mpr=b virtualdub
Note: VirtualDub started, presented me with the License, I clicked ok and then the "virtal dub internal debugger" started and wine crashed.
Ok, the first obvious glitch here is, that "winedbg" is not in /usr/bin/ but in /usr/local/bin (why does wine look for it in a hardcoded path, not respecting $PREFIX?)
What worries me the most is the 'illegal hardware instruction (core dumped)', I get this when trying to run Diablo/Starcraft too.
Ok, I then started VirtualDub a second time and it complains that "My Displaydriver is not compatible with Windows95. DirectDraw only supports Windows95 compatbile drivers" Using --dll ddraw=b fixed that problem too.
I then can play DivX movies without "problems" but after closing Virtualdub I get another 'illegal hardware instruction (core dumped)'. ExitCode 132, btw.
I'm pretty sure the problem of the originator had to do with 2002.06.05 breaking the libc_r thing, which has been fixed. If "FireWire BSD" can't reproduce the problem, I think this Bug should be closed, but I would be glad if someone could enlighten me as to the problems discussed above. Thanks!
Wait, I just tried another movie, and got this strange timeout (I had to kill wine and wineserver!)
fixme:hook:NotifyWinEvent (32780,0x50027,-4,1)-stub!
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:winmm:MMDRV_WaveOut_UnMap16To32A Shouldn't be used: those 16 bit functions use the 32 bit interface
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
file_set_error: Bad address
fixme:ntdll:RtlNtStatusToDosError no mapping for 0001869f
err:ntdll:RtlpWaitForCriticalSection section 0x287da798 "../../windows/user.c: USER_SysLevel" wait timed out, retrying (60 sec) tid=08821800
zsh: 30882 killed wine --dll mpr=b --dll ddraw=b virtualdub
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=803>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1272
------- Additional Comments From felipewd(a)elipse.com.br 2003-02-10 06:53 -------
Created an attachment (id=397)
executable of an app to test the SW_SHOWMINIMIZED flag
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1272
------- Additional Comments From felipewd(a)elipse.com.br 2003-02-10 06:52 -------
Created an attachment (id=396)
source code of an app to test the SW_SHOWMINIMIZED flag
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1272
Summary: SW_SHOWMINIMIZED bug
Product: Wine
Version: 20030115
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: felipewd(a)elipse.com.br
SW_SHOWMINIMIZED has a weird bug: The application, when restored, goes blank and
have to be killed and re-started to work again.
This looks like an internal loop inside wine, or a wrong XLib flag being set.
This seems to be critical, because to app does not work anymore untill it is
re-started.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
66 NEW PrgWin95: Custom cursor display bug
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
83 ASSI Stabilize Wine Developers Guide Table of Contents
96 NEW DLL Separation (MetaBug)
128 NEW Segfaults on trying to open fontdlg for AIM95
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 ASSI codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
327 NEW CodeWeavers Preview Meta Bug
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
347 NEW err:midi:OSS_MidiInit ioctl on midi info for device 0 f
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
397 NEW System hangs while trying to play a sound
416 NEW Missings exports in winsocks
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
517 NEW Could not load wprocs.dll
530 NEW Package the regression tests for Windows
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
540 NEW DLL Separation: x11drv from user32 (clipboard)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
600 ASSI Add a Site Map
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
718 NEW DPMI handler not called in presence of int $0x31 code
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
749 NEW Sune Hotspot Java crashed in win95 mode
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
792 NEW Display bug in WinZip Extract dialog
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
807 NEW PowerBuilder 6.0 generated applications crash accessing
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
832 NEW Add Direct3D support
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
867 NEW Lotus Notes 5.0.3: err:clipping:CLIPPING_UpdateGCRegion
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 ASSI Win9xism in shell32 (MapSL)
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
881 NEW Mouse cursor not blanked in opengl game
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
900 NEW Upgrade from 20020605 to 20020710 broke Orcad Caputre S
901 NEW sound
903 NEW PathIsURL returning true for invalid formats.
905 NEW Last character in network transmission being dropped
906 NEW Quicken Deluxe 99 dosen't work with Red Carpet release
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
923 NEW We should add default Explorer registry entries to avoi
927 NEW fixme:commctrl:FlatSB_SetScrollProp stub
928 NEW fixme:commctrl:InitializeFlatSB stub
929 NEW fixme:tab:TAB_WindowProc Unimplemented msg TCM_HIGHLIGH
933 NEW ttydrv needs a lot of improvement
934 NEW Cpu usage is always 100%
945 NEW Cannot install ColdFusion MX
952 NEW Wine and The Bat!
958 NEW OSS audio problems (err:wave:OSS_OpenDevice Can't set f
959 NEW ChooseFontA dialog never displays the script selection
962 NEW Unreal Tournament Editor does not work in wine
965 NEW MaskBlt is not implemented
970 NEW Intermittent regression tests freeze, possibly due to t
972 NEW Implement urlmon.URLDownloadToCacheFileA
974 NEW Put translation infrastructure in place for various Win
983 NEW FIXME:int21:DOS3Call Unimplemented FAT32 int32 function
986 ASSI ODBC.dll unimplemented
995 NEW shlfileop test fails on FreeBSD
996 NEW sock test fails onf FreeBSD
1001 NEW Define macros STATUS_ENDPOINT_CLOSED, STATUS_DISCONNECT
1005 NEW Attempts to retrieve live streaming updates with QuoteT
1007 NEW kernel32.dll.Heap32* functions unimplemented
1022 NEW OSS_MidiInit Synthesizer support MIDI in. Not supported
1024 NEW can't install ms sql
1037 NEW Remedy user GUI client generates this memory error
1039 NEW No keyboard in wcmd
1046 NEW FIXME:tab:TAB_WindowProc Unimplemented msg TCM_SETITEME
1067 NEW install of Lotus Notes R6 gives error
1071 NEW fixme:file:UnlockFile not implemented in server AND fix
1074 NEW DLoad.exe (Diablo II/LOD no-cd BNet Loader) returns err
1077 NEW Error installing Lotus Notes 6
1078 NEW NOTES 6 Gold Release - Installed crashes when being run
1080 NEW fixme:shell:IShellLinkA_fnSetShowCmd (0x421ffd20)->(sho
1087 NEW hotspot in wrong position for hand cursor
1088 NEW Wine crashes for user not in /etc/passwd (LDAP authenti
1091 NEW ScrollWindowEx does not update invalidated are
1095 NEW Game Star wars rebellion-> fixme:bitblt:X11DRV_BitBlt p
1128 NEW Curse of Monkey Island cannot find its files on CD (was
1129 NEW bitmaps are not drawn in "Dink Smallwood"
1135 NEW WinISO 5.3: Menus doesn't working
1152 NEW version information functionality (ver.dll, version.dll
1157 NEW Display Hebrew when the locale is set to he_IL
1159 NEW Regression in x11drv due to http://cvs.winehq.com/patch
1162 NEW Parents Screen unavailable in Leap Ahead Preschool
1168 NEW Mohaa, Mohas && LOD terrian
1170 NEW DOSFS_FindUnixName misses existing file
1172 NEW Wine does not extract files fast enough for programs to
1173 NEW Cabinet.dll.so Implamentation... Fails
1182 NEW Using artsdsp wrapping makes Wine crash
1183 NEW Carmen Sandiego Junior will not start
1185 NEW Conformance Tests fail on windows 98
1189 NEW Error in window creation, Wine 20021124
1197 NEW Quicken 2001 Deluxe - Password dialog box not displayed
1198 NEW Problems with King's Quest 2 remake from Tierra
1205 NEW DOSFS_OpenDevice does not support parallel printer
1212 NEW Some applications don't display any fonts
1225 NEW unable to compile ole
1226 NEW winsock:NtStatusToWSAError Status code c0000024
1227 NEW Treeview dosn't send right messages
1240 NEW Nullsoft Installer has bad child window style on first
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1270
------- Additional Comments From tony_lambregts(a)telusplanet.net 2003-02-09 11:53 -------
*** Bug 1271 has been marked as a duplicate of this bug. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1270>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1271
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony_lambregts(a)telusplanet.net 2003-02-09 11:53 -------
*** This bug has been marked as a duplicate of 1270 ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1271>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1271
Summary: Mac OS X install problems
Product: Wine
Version: unspecified
Platform: Macintosh
OS/Version: All
Status: UNCONFIRMED
Severity: critical
Priority: P5
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: kingofshadow(a)katamail.com
I have tried to compile wine on Mac OS X 10.2.3 but while configurating I get this error:
....
....
checking dlfcn.h usability... no
checking dlfcn.h presence... no
checking for dlfcn.h... no
checking for i586-mingw32msvc-gcc... no
checking for i586-mingw32msvc-dlltool... no
configure: error: could not find a way to build shared libraries.
It is currently not possible to build Wine without shared library
(.so) support to allow transparent switch between .so and .dll files.
If you are using Linux, you will need a newer binutils.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1271>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1270
Summary: Mac OS X install problems
Product: Wine
Version: 20010112
Platform: Macintosh
OS/Version: All
Status: UNCONFIRMED
Severity: critical
Priority: P5
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: kingofshadow(a)katamail.com
I have tried to compile wine on Mac OS X 10.2.3 but while configurating I get this error:
....
....
checking dlfcn.h usability... no
checking dlfcn.h presence... no
checking for dlfcn.h... no
checking for i586-mingw32msvc-gcc... no
checking for i586-mingw32msvc-dlltool... no
configure: error: could not find a way to build shared libraries.
It is currently not possible to build Wine without shared library
(.so) support to allow transparent switch between .so and .dll files.
If you are using Linux, you will need a newer binutils.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1270>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1269
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.winmx.com/downloa
| |d/
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
Keywords| |download
------- Additional Comments From tony_lambregts(a)telusplanet.net 2003-02-09 11:22 -------
This is a free-as-in-beer download. I can confirm this bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1269>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1269
Summary: On the search page in WinMX it displays it's own icon,
but is too big in WINE
Product: Wine
Version: 20010112
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jmillenbach(a)hotmail.com
This was on v3.31 of WinMX (gotten from the link in the app db, but I'm pretty
sure http://www.winmx.com and click on the download link). And the Redhat 8.0
rpm from Mecano of 20030115 (with the devel package too). I ran the install
exe and after configuring the app it started. If you go to the search tab along
the top it'll display another row of boxes below. The initial box will have a
WinMX icon, but it'll be bigger than it's supposed to be.
http://www.zeron.ca/~dan/wine/winmx1.png is a screenshot for a different bug,
but it shows this problem too.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1269>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1256
------- Additional Comments From tony_lambregts(a)telusplanet.net 2003-02-08 18:47 -------
This is good but we usually wait untill the patch is in CVS before closing the bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1256>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1263
------- Additional Comments From pmcnett(a)pm-sc.com 2003-02-08 17:48 -------
Yes, that patch resolves the window resizing issue in Visual FoxPro, all
versions. Great job, I definitely feel like I'm getting my money's worth with
Wine! :)
As far as I'm concerned this bug can be marked as resolved, assuming that the
patch makes it into the CVS tree.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1263>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1263
------- Additional Comments From dclark(a)akamail.com 2003-02-08 15:34 -------
It definitely isn't correct, since it breaks certain cases in other apps. I'm
still trying to figure out exactly what should be done. All the MSDN says is
that "the four low-order bits of the wParam parameter are used internally by the
system", so not much help there :-)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1263>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1263
------- Additional Comments From pmcnett(a)pm-sc.com 2003-02-08 14:54 -------
Duane your patch worked beautifully on my end. I can now resize all VFP
windows normally. However, it still doesn't handle the grab on the top edge of
the window correctly, but all other edges and all corners grab just fine.
Thanks and hopefully this patch can get committed if it is found to be the
correct one.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1263>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1263
------- Additional Comments From dclark(a)akamail.com 2003-02-08 12:38 -------
Here is a small "fix", but not the right one. It is not clear to me yet whether
the wrong value is being passed to this function, or that a more elaborate
method needs to be used to determine what to do with it. But anyway, the patch
at least demonstrates where the problem is.
Index: dlls/x11drv/winpos.c
===================================================================
RCS file: /home/wine/wine/dlls/x11drv/winpos.c,v
retrieving revision 1.63
diff -u -r1.63 winpos.c
--- dlls/x11drv/winpos.c 8 Jan 2003 21:09:26 -0000 1.63
+++ dlls/x11drv/winpos.c 8 Feb 2003 18:35:31 -0000
@@ -1901,11 +1903,17 @@
else /* SC_SIZE */
{
if (!thickframe) return;
- if ( hittest && hittest != HTSYSMENU ) hittest += 2;
+ ERR("Hittest A %ld\n", hittest);
+ if ( hittest && hittest != HTSYSMENU )
+ {
+ if (hittest <= WMSZ_BOTTOMRIGHT) hittest += ( HTLEFT - WMSZ_LEFT );
+ else hittest += 2;
+ }
else
{
set_movesize_capture( hwnd );
hittest = start_size_move( hwnd, wParam, &capturePoint, style );
+ ERR("Hittest B %ld\n", hittest);
if (!hittest)
{
set_movesize_capture(0);
@@ -1932,6 +1940,7 @@
}
origRect = sizingRect;
+ ERR("Hittest C %ld\n", hittest);
if (ON_LEFT_BORDER(hittest))
{
mouseRect.left = max( mouseRect.left, sizingRect.right-maxTrack.x );
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1263>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1267
Summary: Popup menus (shortcuts) will put the main form behind
other X apps (Visual FoxPro)
Product: Wine
Version: CVS
Platform: PC
URL: http://www.paulmcnett.com/vfp/testwine
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pmcnett(a)pm-sc.com
If you have other apps open on your desktop, and you are
letting X manage created windows and you aren't running
inside a Wine desktop, when a popup menu appears all other
VFP-created windows get sent behind any other windows on the
desktop and only the popup is visible.
Please download my demo application to reproduce.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1267>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1266
Summary: WAIT WINDOW display problem (Visual FoxPro)
Product: Wine
Version: CVS
Platform: PC
URL: http://www.paulmcnett.com/vfp/testwine
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pmcnett(a)pm-sc.com
WAIT WINDOW text gets drawn, but then the background covers up the text.
See my demo to reproduce.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1266>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1265
Summary: ToolTip text is cut off (Visual FoxPro)
Product: Wine
Version: CVS
Platform: PC
URL: http://www.paulmcnett.com/vfp/testwine
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pmcnett(a)pm-sc.com
Tooltip text is drastically cut off, which is a big problem
when working in the VFP IDE as Intellisense will tell a
developer the syntax for the command being entered.
Download my demo to reproduce.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1265>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1264
Summary: Shift+Tab keystroke not working (Visual FoxPro)
Product: Wine
Version: CVS
Platform: PC
URL: http://www.paulmcnett.com/vfp/testwine/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pmcnett(a)pm-sc.com
A TAB will advance to the next control, and a SHIFT-TAB *should* bring you to
the previous control, but this isn't implemented in Wine. The following
message gets output when you try to SHIFT-TAB from Visual FoxPro:
err:keyboard:X11DRV_ToUnicode Please report: no char for keysym FE20
(ISO_Left_Tab) :
err:keyboard:X11DRV_ToUnicode (virtKey=9,scanCode=F,keycode=17,state=11)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1264>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1263
Summary: Window resizing does not work (Visual FoxPro)
Product: Wine
Version: CVS
Platform: PC
URL: http://www.paulmcnett.com/vfp/testwine
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pmcnett(a)pm-sc.com
Form resizing doesn't work properly in Microsoft Visual FoxPro versions 5, 6,
7, 8. Trying to grab the sides or corners of the form to resize does not
work.
To reproduce this problem please download my demo application as listed in the
URL field.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1263>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1261
lionel.ulmer(a)free.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |lionel.ulmer(a)free.fr
Status|UNCONFIRMED |ASSIGNED
everconfirmed|0 |1
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-07 12:15 -------
You *sure* that you are using 'builting' OpenGL ? What I find strange is that I
see this in the log :
00000009:Call kernel32.LoadLibraryA(4276478c "opengl32.dll") ret=4271edb0
00000009:Ret kernel32.LoadLibraryA() retval=42860000 ret=4271edb0
Whereas on my box, whn OpenGL is loaded, I get something like that :
08078610:Call kernel32.LoadLibraryA(0064b9e8 "opengl32.dll") ret=005d7a77
(...)
08078610:Call user32.GetPropA(00010020,42eddf7a "__wine_x11_whole_window")
ret=42eba0f9
08078610:Call kernel32.GlobalFindAtomA(42eddf7a "__wine_x11_whole_window")
ret=4085e3ea
(...)
08078610:Ret kernel32.LoadLibraryA() retval=42eb0000 ret=005d7a77
So I am pretty convinced that you must not use builtin OpenGL (or that you must
not have the same version of Wine than me :-) ).
Could you try with adding +loadorder to your command line to check what you will
take ?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1261>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1262
------- Additional Comments From felipewd(a)elipse.com.br 2003-02-07 10:54 -------
Created an attachment (id=394)
Source code of a program that creates an transparent window
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1262>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1262
------- Additional Comments From felipewd(a)elipse.com.br 2003-02-07 10:54 -------
Created an attachment (id=393)
Executable of a program that creates an transparent window
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1262>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1262
Summary: WS_EX_TRANSPARENT bug
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: felipewd(a)elipse.com.br
CreateWindow's flag WS_EX_TRANSPARENT doesn't do anything.
Cesar Mello did a little example program which uses this flag:
Both source and an executable are available here:
ftp://ftp.elipse.com.br/pub/transp/transp-exe.tar.gz
ftp://ftp.elipse.com.br/pub/transp/transp-source.tar.gz
Does anyone can help me with this?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1262>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1255
------- Additional Comments From horacio6217(a)mchsi.com 2003-02-07 09:43 -------
Sorry for not being more clear about it. It was late, I was tired.
With the newer version of WINE, it only displays those messages and it never
gets Matlab up and running. I waited for about 3 minutes. It only gets as far
as displaying the Matlab logo.
Thanks
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1255>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1261
Summary: Nascar 2002/2003 are not able to start with OpenGL
rasterizer
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: frick(a)sc-networks.de
When selecting OpenGL for playing Nascar Season 2002/2003 the test of the config
program fails, with a message, that the say, that the desired render method can
not be initalized. Starting the game, the game ends at once when starting. A
trace x11drv, opengl and relay was sent to Lionell about this problem.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1261>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1256
felipewd(a)elipse.com.br changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From felipewd(a)elipse.com.br 2003-02-07 05:18 -------
Tested and it works great.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1256>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1256
felipewd(a)elipse.com.br changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From felipewd(a)elipse.com.br 2003-02-07 05:17 -------
Sander van Leeuwen fixed it with this patch:
--- controls/edit.c.orig 2003-02-07 09:16:26.000000000 -0200
+++ controls/edit.c 2003-02-07 08:57:04.000000000 -0200
@@ -1747,7 +1747,7 @@
alloc_size = ROUND_TO_GROW((size + 1) * sizeof(WCHAR));
if ((es->undo_text = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
es->undo_text, alloc_size))) {
-
es->undo_buffer_size = alloc_size/sizeof(WCHAR);
+
es->undo_buffer_size = alloc_size/sizeof(WCHAR) - 1;
return TRUE;
}
else
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1256>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1260
Summary: MS Office 2000 installation lock
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: eleknader(a)phnet.fi
MS Office 2000 installation on clean cvs version chokes after accepting the EULA with
following information in console:
wineserver: request.c:175: set_reply_data_size: Assertion `size <=
get_reply_max_size()' failed.
Installation has worked flawlessly a couple of weeks ago, so this is due to a recent
change in wine.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1260>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1259
Summary: Wine system tray under GNOME
Product: Wine
Version: 20010112
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: adamd_84(a)hotmail.com
There appears to be a problem with the wine systray under GNOME, starting wine
will start the systray but no icons are loaded in.
for example the program Utopian Angel(www.utopiatemple.com), requries an icon in
the system tray, the tray appears when wine is started but there is no angel
icon in it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1259>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1255
------- Additional Comments From tony_lambregts(a)telusplanet.net 2003-02-06 23:45 -------
By the log I take it that the original problem is gone. The log shows me that
the program encounters a couple of stubs. These are not nessesarily a problem. I
suppose that the program still does not work otherwise you would not have
reopened the report. What is not clear to me is what is going wrong. There is no
evidence of a crash from the log. Could you please elaborate on what the problem is.
BTW is matlab is by the company at this web site?. http://www.mathworks.com
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1255>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1255
horacio6217(a)mchsi.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From horacio6217(a)mchsi.com 2003-02-06 23:13 -------
I installed wine version: 20030115. I get the following errors:
fixme:console:SetConsoleCtrlHandler (0x10c0ed10,1) - no error checking or
testing yet
fixme:msvcrt:MSVCRT_signal (8 0x40fa10):stub
fixme:msvcrt:MSVCRT_signal (4 0x40fa10):stub
fixme:msvcrt:MSVCRT_signal (11 0x40fa10):stub
fixme:msvcrt:MSVCRT_signal (22 (nil)):stub
fixme:msvcrt:_fstati64 :dwFileAttributes = 32, mode set to 0
fixme:msvcrt:_fstati64 :dwFileAttributes = 32, mode set to 0
fixme:msvcrt:MSVCRT_signal (8 0x40fa10):stub
fixme:msvcrt:MSVCRT_signal (4 0x40fa10):stub
fixme:msvcrt:MSVCRT_signal (11 0x40fa10):stub
fixme:msvcrt:MSVCRT_signal (22 (nil)):stub
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1255>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=832
------- Additional Comments From fgouget(a)codeweavers.com 2003-02-06 17:29 -------
The idea would to attach individual tasks as they are identified (such as, I'm
making this up, add bump mapping support, add support for the new FooBar9
interface, merge implementation of Bar7 with Bar8, etc.), and also Direct3D
related bug-reports (e.g. bug 816, bug 1201 and bug 1202). So mainly its use now
would be as a way to make it easier for potential developpers to identify tasks
and bugs related to Direct3D. But the 'wine-directx' tag may be enough and it's
just a suggestion. So it's up to the people involved in Direct3D development
(e.g. you) to determine whether that's useful.
Initially it just seemed like a convenient place to group the Direct3D related
discussions until Direct3D development resumed. Direct3D development seems much
more healthy now than when the bug was created :-) If it's not really useful
then it can be closed.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=832>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=832
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-06 17:11 -------
What should we do with this generic meta-bug ? Close it or let it open (as we
will never go as fast as MS to implement D3D, it will never be closed :-) ).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=832>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1254
lionel.ulmer(a)free.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |lionel.ulmer(a)free.fr
Status|UNCONFIRMED |ASSIGNED
everconfirmed|0 |1
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-06 16:53 -------
Well, the demo tries to load OpenGL too and fails. So I assigned this bug to myself.
I will have to take anoter Wine Hacking Vacation to fix all this problems :-)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1254>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1244
------- Additional Comments From tony_lambregts(a)telusplanet.net 2003-02-06 16:30 -------
This is a wonderfull bug report. I am not sure why you think that it is not the
"right" fix. This is not my area though. Anyway If it solves your problem
I would like to se it go to wine patches. The following link gives you the
information on how to do this.
http://www.winehq.org/docs/wine-devel/patches.shtml
I would not want it to bit rot, and someone might want to come up with a better
solution if it is posted there.
BTW is there a demo or download version of this program.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1244>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1257
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |andi(a)rhlx01.fht-esslingen.de
Status|NEW |ASSIGNED
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-06 16:27 -------
Wine won't load native versions of builtin files if there is one in the
app directory (this is a "feature", albeit a strange one!).
In other words: *move* the file *from* the app dir *into* the configured
c:\windows\system dir, then load it natively, and it should work.
IMHO while such behaviour may make sense, it's been soooooo incredibly confusing
about a ton of times already that it ought to be killed for good (or at least
made configurable with default to *off*).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1257>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1234
lionel.ulmer(a)free.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |lionel.ulmer(a)free.fr
Status|NEW |ASSIGNED
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-06 15:43 -------
OK, the dinput problem is reproductible with the demo, I am starting to investigate.
For the original submitter of this bug (Steven), could you attach your OpenGL
log to bug 1254 to compare with Kristoffer's log ?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1234>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1254
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-06 15:28 -------
I know it won't be easy, but could you try to prevent Wine to load your glide
library ?
I.e. is it possible to 'remove' glide from your system without 'hurting' your
OpenGL library ?
Because what I can see in the log is the following : Tribes loads OpenGL / GLU
without any problem. And then tries to load 'glide2x' without any problem either.
So their logic is, I think, to say 'Oh, this is a 3DFx system, better to use
Glide than OpenGL then' and OpenGL is never actually used.
I will try with the demo (once it has been downloaded) to see if I can reproduce
stuff here.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1254>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1256
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
------- Additional Comments From tony_lambregts(a)telusplanet.net 2003-02-06 15:17 -------
Perhaps it something I am doing wrong but I cannot download the files via your
link. Please attach the files http://bugs.winehq.com/createattachment.cgi?id=1256
Also it seems that you picked the wrong version of wine or you should be upgrading.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1256>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1255
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2003-02-06 14:56 -------
Good god... You are running a very old version of wine there. Please update you
version of wine http://www.winehq.org/download/ I would recommend you install
the latest tarball.
Also the documentation you have is very out of date. --managed and --winver are
no longer command line options. The latest documentation is always available at
the following link. http://www.winehq.org/Docs/
If you still have the same problem after installing a new version of wine please
reopen.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1255>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1257
Summary: Regression in dll loading
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tony_lambregts(a)telusplanet.net
CC: dpaun(a)rogers.com
The following patch caused a regression in SimCity 3000
http://www.winehq.com/hypermail/wine-cvs/2002/09/0193.html
The second part of the patch is the one that causes the regression
--- wine/loader/loadorder.c:1.58 Thu Feb 6 19:37:34 2003
+++ wine/loader/loadorder.c Thu Feb 6 19:37:34 2003
@@ -98,7 +98,7 @@
/* default if nothing else specified */
static const enum loadorder_type default_loadorder[LOADORDER_NTYPES] =
{
- LOADORDER_DLL, LOADORDER_BI, 0, 0
+ LOADORDER_BI, LOADORDER_DLL, 0, 0
};
static struct loadorder_list cmdline_list;
This regression is rather curious in that I had discovered it 4 months ago but
did not report it at that time. That is because I assumed the patch that broke
the program was correct and the problem was with our implementation of
MSVCRT.DLL. At this point I have re-evaluated the situation and have come to the
conclusion that the behavior of the loader is not correct. SimCity 3000 has its
own implementation of MSVCRT.DLL but with this patch applied wine does not load it.
As a matter of fact at this point there is no way I can get SimCity 3000 to load
its own MSVCRT.DLL without reverting the patch.
I have tried the following dll overrides and none of them work.
[AppDefaults\\sc3.exe\\DllOverrides]
"F:\Program Files\Maxis\SimCity 3000\Game\MSVCRT.DLL" = "native"
"F:\Program Files\Maxis\SimCity 3000\Game\MSVCRT" = "native"
"msvcrt" = "native"
I even tried copying SimCity's version of MSVCRT to my fake windows directory
with no success.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1257>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1256
Summary: edit control bug
Product: Wine
Version: 20010112
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: felipewd(a)elipse.com.br
Severe bug with the edit control: When you put a lot of text in an edit
control and then begins to backspace them, the app simply seg faults.
I'm using wine-20030115 but also tried wine-20021031, and both have this bug.
Both the source and the executable for test are available here:
ftp://elipse.com.br/pub/EditControl/about1-src.tar.gz
ftp://elipse.com.br/pub/EditControl/about1-exe.tar.gz
Yeah, I stole the example from Petzold's book....so please enter help->about
to see the dialog :)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1256>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1255
Summary: When trying to run Matlab 6 I get BadWindow ..
Product: Wine
Version: 20010824
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-console
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: horacio6217(a)mchsi.com
The command I type in is:
wine --managed --winver win98 matlab.exe
This is what I get:
X Error of failed request: BadWindow (invalid Window parameter)
Major opcode of failed request: 24 (X_ConvertSelection)
Resource id in failed request: 0x0
Serial number of failed request: 21
Current serial number in output stream: 21
err:ntdll:RtlpWaitForCriticalSection section 0x41833684 "x11drv_main.c:
X11DRV_CritSection" wait timed out, retrying (60 sec) fs=008f
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1255>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1254
------- Additional Comments From kristoffer_e1(a)hotmail.com 2003-02-06 01:45 -------
Created an attachment (id=392)
wine --debugmsg +opengl,+relay,+x11drv Tribes.exe
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1254>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1234
------- Additional Comments From kristoffer_e1(a)hotmail.com 2003-02-06 01:34 -------
attachment 02/06/03 01:31 is a gz file, so use save as and rename it to .gz
sorry by first attach-post.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1234>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1234
kristoffer_e1(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From kristoffer_e1(a)hotmail.com 2003-02-06 01:33 -------
*** This bug has been confirmed by popular vote. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1234>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1234
------- Additional Comments From kristoffer_e1(a)hotmail.com 2003-02-06 01:31 -------
Created an attachment (id=391)
wine --debugmsg +event,+relay,+dinput,+seh Tribes.exe
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1234>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1254
Summary: StarSiege Tribes 1 - OpenGL not detected
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: kristoffer_e1(a)hotmail.com
Sys.
AMD Duron 750Mhz
Via Motherboard
Voodoo3 (with working OpenGL support)
compiled with ./configure --prefix=/usr --enable-opengl
Tribes starts up fine but i'm unable to select any openGL mode. I've tried to
do workarounds for this by using glidewrappers and i've had some success.
If you use glidewrappers it will detect glide and it will use your opengl
accel to render them, but there's no glidewrapper that works 100% so this is
not a valid solution.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1254>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From info(a)moabutah.com 2003-02-05 22:01 -------
Created an attachment (id=390)
Partial Debug Messages with opening of item
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From info(a)moabutah.com 2003-02-05 20:37 -------
I tried to log the ddraw messages, but the file got huge really fast. So I
attached another simple console session.
Upon researching, I believe the blinking problem is related to a set of
"sub-windows" which open on the bottom right of the game window when you open
your "bag" or "backpack" (or any other item that "opens"), that show the
contents of the bag. The blinking stops if you close all these sub-windows and
turn off "show lighting effects" in the menu.
Whenever one of these sub-windows is reopened, the blinking resumes.
Just a quick note - to open an item you right click on it and choose "open".
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From info(a)moabutah.com 2003-02-05 20:34 -------
Created an attachment (id=389)
Another console session
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1253
Summary: Unimplemented function in netapi32
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tharding(a)cs.utah.edu
When I try to run a program that accesses a lm license server I get an error
stating that the function NetWkstaTransportEnum is unimplemented in the
netapi32.dll. I am using the builtin version, not the native windows version.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1253>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1252
Summary: ALT-Key is not properly released
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: sparhawk(a)gmx.at
When I run Agent I can use <ALT>-S to immediately send the current mail. In that
case the ALT activates the Menubar as if pressed as a single key (this is the
normal behaviour if pressed alone).
This is quite annyoing because now, when I sent a mail, I always have to press
ESC or klick the mouse in the window in order to deactivate the Menubar.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1252>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=267
titan.costa(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |titan.costa(a)wanadoo.fr
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=267>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1251
Summary: Cabinet file expander error
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: malekjo(a)aphrodite.com
fixme:cabinet:FDICreate (pfnalloc == ^0x244f7880, pfnfree == ^0x244f7890,
pfnopen == ^0x244f78a0, pfnread == ^0x244f7a80, pfnwrite == ^0x244f7c00,
pfnclose == ^0x244f7d70, pfnseek == ^0x244f7e10, cpuType == -1, perf ==
^0x2453e4f0): stub
^^^^^^^^^^^^^^^^^^^
from console output for Wine 20030115
Cannot install Office 2K or Visio XP with fake-windows setup. With the mandrake
9 wine RPM I could at least install Office 2K.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1251>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From info(a)moabutah.com 2003-02-03 15:16 -------
Apparently the Tibia site was attacked by a hacker and thats why it was down for
so long! their whole game network was knocked out I guess.
Anyway their site should be back up soon for testing this bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
66 NEW PrgWin95: Custom cursor display bug
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
83 ASSI Stabilize Wine Developers Guide Table of Contents
96 NEW DLL Separation (MetaBug)
128 NEW Segfaults on trying to open fontdlg for AIM95
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 ASSI codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
267 NEW ddraw interface not found
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
327 NEW CodeWeavers Preview Meta Bug
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
347 NEW err:midi:OSS_MidiInit ioctl on midi info for device 0 f
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
397 NEW System hangs while trying to play a sound
416 NEW Missings exports in winsocks
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
517 NEW Could not load wprocs.dll
530 NEW Package the regression tests for Windows
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
540 NEW DLL Separation: x11drv from user32 (clipboard)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
600 ASSI Add a Site Map
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
718 NEW DPMI handler not called in presence of int $0x31 code
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
749 NEW Sune Hotspot Java crashed in win95 mode
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
792 NEW Display bug in WinZip Extract dialog
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
807 NEW PowerBuilder 6.0 generated applications crash accessing
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
832 NEW Add Direct3D support
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
867 NEW Lotus Notes 5.0.3: err:clipping:CLIPPING_UpdateGCRegion
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 ASSI Win9xism in shell32 (MapSL)
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
881 NEW Mouse cursor not blanked in opengl game
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
900 NEW Upgrade from 20020605 to 20020710 broke Orcad Caputre S
901 NEW sound
903 NEW PathIsURL returning true for invalid formats.
905 NEW Last character in network transmission being dropped
906 NEW Quicken Deluxe 99 dosen't work with Red Carpet release
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
923 NEW We should add default Explorer registry entries to avoi
927 NEW fixme:commctrl:FlatSB_SetScrollProp stub
928 NEW fixme:commctrl:InitializeFlatSB stub
929 NEW fixme:tab:TAB_WindowProc Unimplemented msg TCM_HIGHLIGH
933 NEW ttydrv needs a lot of improvement
934 NEW Cpu usage is always 100%
945 NEW Cannot install ColdFusion MX
952 NEW Wine and The Bat!
958 NEW OSS audio problems (err:wave:OSS_OpenDevice Can't set f
959 NEW ChooseFontA dialog never displays the script selection
962 NEW Unreal Tournament Editor does not work in wine
965 NEW MaskBlt is not implemented
970 NEW Intermittent regression tests freeze, possibly due to t
972 NEW Implement urlmon.URLDownloadToCacheFileA
974 NEW Put translation infrastructure in place for various Win
983 NEW FIXME:int21:DOS3Call Unimplemented FAT32 int32 function
986 ASSI ODBC.dll unimplemented
995 NEW shlfileop test fails on FreeBSD
996 NEW sock test fails onf FreeBSD
1001 NEW Define macros STATUS_ENDPOINT_CLOSED, STATUS_DISCONNECT
1005 NEW Attempts to retrieve live streaming updates with QuoteT
1007 NEW kernel32.dll.Heap32* functions unimplemented
1022 NEW OSS_MidiInit Synthesizer support MIDI in. Not supported
1024 NEW can't install ms sql
1037 NEW Remedy user GUI client generates this memory error
1039 NEW No keyboard in wcmd
1046 NEW FIXME:tab:TAB_WindowProc Unimplemented msg TCM_SETITEME
1067 NEW install of Lotus Notes R6 gives error
1071 NEW fixme:file:UnlockFile not implemented in server AND fix
1074 NEW DLoad.exe (Diablo II/LOD no-cd BNet Loader) returns err
1077 NEW Error installing Lotus Notes 6
1078 NEW NOTES 6 Gold Release - Installed crashes when being run
1080 NEW fixme:shell:IShellLinkA_fnSetShowCmd (0x421ffd20)->(sho
1087 NEW hotspot in wrong position for hand cursor
1088 NEW Wine crashes for user not in /etc/passwd (LDAP authenti
1091 NEW ScrollWindowEx does not update invalidated are
1095 NEW Game Star wars rebellion-> fixme:bitblt:X11DRV_BitBlt p
1128 NEW Curse of Monkey Island cannot find its files on CD (was
1129 NEW bitmaps are not drawn in "Dink Smallwood"
1135 NEW WinISO 5.3: Menus doesn't working
1152 NEW version information functionality (ver.dll, version.dll
1157 NEW Display Hebrew when the locale is set to he_IL
1159 NEW Regression in x11drv due to http://cvs.winehq.com/patch
1162 NEW Parents Screen unavailable in Leap Ahead Preschool
1168 NEW Mohaa, Mohas && LOD terrian
1170 NEW DOSFS_FindUnixName misses existing file
1172 NEW Wine does not extract files fast enough for programs to
1173 NEW Cabinet.dll.so Implamentation... Fails
1182 NEW Using artsdsp wrapping makes Wine crash
1183 NEW Carmen Sandiego Junior will not start
1185 NEW Conformance Tests fail on windows 98
1189 NEW Error in window creation, Wine 20021124
1197 NEW Quicken 2001 Deluxe - Password dialog box not displayed
1198 NEW Problems with King's Quest 2 remake from Tierra
1205 NEW DOSFS_OpenDevice does not support parallel printer
1212 NEW Some applications don't display any fonts
1225 NEW unable to compile ole
1226 NEW winsock:NtStatusToWSAError Status code c0000024
1227 NEW Treeview dosn't send right messages
1240 NEW Nullsoft Installer has bad child window style on first
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1244
------- Additional Comments From keldon(a)ont.com 2003-02-02 20:00 -------
Created an attachment (id=388)
ugly hack to fix serial writes
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1244>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1244
------- Additional Comments From keldon(a)ont.com 2003-02-02 19:52 -------
I got this to work using an ugly patch (see attached). The write buffer
of the serial port was getting overrun. That caused the app to wait for
an ACK packet that was never going to come.
What I don't understand is why the call to write() doesn't block until
the buffer has drained.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1244>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1234
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-02 08:02 -------
Just for your information, currently debugging DInput games with Wine is
impossible (due to some problems with the handling of the low-level keyboard /
mouse hooks). There is a thread on this in wine-devel (titled, if I remember
well 'Some strange winedbg regression').
If the problem is keyboard / event related, could you attach a log with the
following debug messages : --debugmsg +event,+relay,+dinput,+seh
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1234>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-02 04:13 -------
OK, downloaded the game and trying now to get to the Sign-Up page for the free
account...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1250
Summary: Application doesn't like "Access Denied" from
CreateDirectory
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: keldon(a)ont.com
My config file has this (just like the sample config file):
[Drive E]
"Path" = "/tmp"
[wine]
"Temp" = "e:\\"
But I have an app (Garmin's Mapsource) that tries to do this:
0807e1a8:Call kernel32.GetTempPathA(00000005,41338e00) ret=00737c67
0807e1a8:Ret kernel32.GetTempPathA() retval=00000003 ret=00737c67
0807e1a8:Call kernel32.CreateDirectoryA(41338e00 "E:\\",00000000) ret=00737d2e
0807e1a8:Ret kernel32.CreateDirectoryA() retval=00000000 ret=00737d2e
0807e1a8:Call kernel32.GetLastError() ret=00737d3e
0807e1a8:Ret kernel32.GetLastError() retval=00000005 ret=00737d3e
It then freaks out about the "Access Denied" error it got and dies. I can work
around this by doing either:
a) Changing Wine so that "Already Exists" is returned instead. The app ignores
this error, apparently.
b) Changing my temp path in the config file to c:\windows\temp (something not at
the root of a "drive")
I suspect this is a bug in the app, not wine. But still, maybe the default temp
path shouldn't be a root directory. There may be other apps that don't like it
either.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1250>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1249
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |julliard(a)winehq.com
Status|UNCONFIRMED |ASSIGNED
everconfirmed|0 |1
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-02 00:57 -------
Whoa, excellent reporting!
Assigning to Alexandre.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1249>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1249
------- Additional Comments From keldon(a)ont.com 2003-02-01 21:59 -------
Created an attachment (id=387)
Log showing hang
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1249>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1249
Summary: Patch 7166 introduces InstallShield regression
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: keldon(a)ont.com
Patch 7166 (Started moving functions that deal with Unix file descriptors to a
separate fd object) causes a regression in Garmin's Mapsource installer. Before
this patch, the installer would complete the installation. Now, it hangs in the
initialization.
I'll attach a log showing where the hang occurs. It seems to be a bug with
named pipes. Looks like a process writes to one, but the process on the other
end hangs in a call to ReadFile().
Note that when backing out the mentioned patch, I also backed out a later patch
to the wineserver (make process/thread ids small ints). Just backing out this
second patch has no effect on the hang.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1249>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From info(a)moabutah.com 2003-02-01 19:54 -------
Their site can be quite busy and won't come up during "peak hours" at times.
There is a download link and then you have to sign up for a free account.
Keep trying and you will be able to get the site.
I will try and gzip an attachment if you keep having trouble.
The exe is about 3 megs.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From lionel.ulmer(a)free.fr 2003-02-01 13:00 -------
Is it possible to have a demo of the game ? I tried looking at the page and it
does not seem possible (as the page took about 10 minutes to load and I did not
find any obvious 'download' link).
If not, a screenshot of the problem could help.
Moreover, a ddraw log from the beginning could help too (if it's too big, just
gzip / bzip2 it).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From info(a)moabutah.com 2003-02-01 11:20 -------
Created an attachment (id=385)
DDraw Debug Messages
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
------- Additional Comments From info(a)moabutah.com 2003-02-01 11:20 -------
Created an attachment (id=384)
Basic Console Messages
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1248
Summary: fixme:ddraw:Main_DirectDraw_SetCooperativeLevel
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: info(a)moabutah.com
With Wine 20030115 and the online game Tibia (http://www.tibia.com)
there is a problem which seems to be caused by the games "daylight" feature
which is a shading layer.
The screen blinks chaotically and the blinking square sometimes does not match
the size of the program window in the way it should.
X Server Resolution is 1152 x 1268 and the BPP 24 The video card is a ATI Radeon
7500
See attachments
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1248>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
titan.costa(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |titan.costa(a)wanadoo.fr
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
dpaun(a)rogers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From dpaun(a)rogers.com 2003-01-31 21:18 -------
To apply the patch, do:
cd dlls/ddraw
patch -p0 < patch381.diff
Also, Cristian, you should accept this bug, and close it when it gets
committed.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From info(a)moabutah.com 2003-01-31 21:12 -------
Does this patch (attachment 381) include a solution to this "blinking" problem? Also, enlighten me on how I may apply the patch.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From titan.costa(a)wanadoo.fr 2003-01-31 18:59 -------
Created an attachment (id=381)
This patch removes the warning and fixes the characters problem.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From info(a)moabutah.com 2003-01-31 16:09 -------
I have removed the 24bpp section and reentered the game program.
This fixed the problem with the illegible text and characters, but now
there is a problem with the games "daylight" feature which is a shading layer.
It blinks chaotically and does not match the size of the program window in the
way it should.
Attachments 378 and 379 document a session in which this problem occured.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From info(a)moabutah.com 2003-01-31 16:06 -------
Created an attachment (id=379)
Full DDraw debug for session
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From info(a)moabutah.com 2003-01-31 16:06 -------
Created an attachment (id=378)
Basic console messages for blinking
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From lionel.ulmer(a)free.fr 2003-01-31 15:24 -------
For the fun of it, could you remove the '/* 24bpp 8/8/8 */' lines in
dll/ddraw/ddraw/user.c. Ie remove this :
/* 24bpp 8/8/8 */
{ sizeof(DDPIXELFORMAT), DDPF_RGB, 0, { 24 }, { 0xFF0000 },
{ 0x00FF00 }, { 0x0000FF } },
And re-do a 'make install' in dll/ddraw.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From info(a)moabutah.com 2003-01-31 15:12 -------
Created an attachment (id=377)
DDraw Debug Messages
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From info(a)moabutah.com 2003-01-31 15:08 -------
The X Server Resolution is 1152 x 1268 and the BPP 24 The video card is a ATI Radeon 7500
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
------- Additional Comments From lionel.ulmer(a)free.fr 2003-01-31 12:53 -------
What is your X desktop resolution ? Is it BPP 32 / depth 24 or BPP 32 / depth 32
? What graphic card do you have ?
And could you attach a +ddraw log (ie --debugmsg +ddraw) to this bug report ?
Thanks.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1246
Summary: fixme:ddraw:_Blt_ColorFill Color fill not implemented
for bpp 24!
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: info(a)moabutah.com
Running Wine 20030115 and the online game Tibia - http://www.tibia.com
The game runs but gives the error in the console
fixme:ddraw:_Blt_ColorFill Color fill not implemented for bpp 24!
and the text and characters are surrounded by white boxes that make playing the
game impractical.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1246>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1245
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |marcus(a)jet.franken.de
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1245>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1245
------- Additional Comments From marcus(a)jet.franken.de 2003-01-31 01:48 -------
Created an attachment (id=376)
__crtLCMapStringA patch
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1245>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1245
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
Summary|Garmin Mapsource crashes |msvcrt.__crtLCMapStringA
|after msvcrt.mblen() call |unimplemented
------- Additional Comments From marcus(a)jet.franken.de 2003-01-31 01:47 -------
correct.
can you try the attached patch please and see if it fixes
the problem>?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1245>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1245
------- Additional Comments From keldon(a)ont.com 2003-01-31 01:22 -------
I did as you asked, and there's nothing new before the RaiseException, but
immediately afterwards I get this:
trace:seh:EXC_RtlRaiseException code=80000100 flags=1 addr=0x780e54cb
trace:seh:EXC_RtlRaiseException info[0]=407d6c80
trace:seh:EXC_RtlRaiseException info[1]=407d6dd3
trace:seh:EXC_RtlRaiseException stub=__crtLCMapStringA
trace:seh:EXC_CallHandler calling handler at 0x709512 code=80000100 flags=1
I suppose this "__crtLCMapStringA" isn't implemented?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1245>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1245
------- Additional Comments From marcus(a)jet.franken.de 2003-01-31 01:17 -------
can you run with -debugmsg +seh,+relay and check the output before the RaiseException? I think it is running up to an unimplemented function or similar.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1245>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1245
------- Additional Comments From keldon(a)ont.com 2003-01-30 23:34 -------
I forgot to mention that when I run with a native msvcrt, it gets far past this
point (it crashes later, but I'll worry about that some other time).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1245>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1244
Summary: Failure to communicate with serial device
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: keldon(a)ont.com
I'm trying to run Garmin's "UPDATER.EXE", which is supposed to load a new
firmware image into a GPS device. Communication is done over a serial port.
If I run the program without any debugmsg flags, it fails immediately,
complaining that it can't find the GPS. However, if I run with:
--debugmsg +comm,+file,+serial
then it gets a bit further. The first thing it does is get the model number and
current firmware version from the device. But it soon fails again before
beginning the upload. Here's an annotated debug log:
trace:comm:COMM_Init COM1 = /dev/ttyS0
trace:comm:COMM_Init LPT1 = /dev/lp0
trace:comm:COMM_Init COM2 = /dev/ttyS1
trace:comm:COMM_Init COM3 = /dev/ttyS2
trace:comm:COMM_Init COM4 = /dev/ttyS3
trace:file:CreateFileW L"COM2" GENERIC_READ GENERIC_WRITE OPEN_EXISTING
attributes 0x0
trace:file:CreateFileW opening device L"COM2"
trace:file:DOSFS_CreateCommPort L"COM2" c0000000 0
trace:file:CreateFileW returning 0x4c
trace:comm:GetCommState handle 0x4c, ptr 0x41222858
trace:comm:GetCommState OK
trace:comm:GetCommState bytesize 8 baudrate 9600 fParity 0 Parity 0 stopbits 1
trace:comm:GetCommState ~IXON ~IXOFF
trace:comm:GetCommState ~CRTSCTS
trace:comm:SetCommState handle 0x4c, ptr 0x41222858
trace:comm:SetCommState bytesize 8 baudrate 9600 fParity 0 Parity 0 stopbits 1
trace:comm:SetCommState ~IXON ~IXOFF
trace:comm:GetCommTimeouts (0x4c,0x41222844)
trace:comm:SetCommTimeouts (0x4c,0x41222844)
fixme:comm:SetupComm insize 4096 outsize 4096 unimplemented stub
trace:comm:PurgeComm handle 0x4c, flags f
trace:comm:ClearCommError handle 0x4c cbInQue = 0 cbOutQue = 0
trace:file:WriteFile 0x4c 0x40f01851 6 0x41222670 (nil)
trace:comm:ClearCommError handle 0x4c cbInQue = 0 cbOutQue = 0
(this line is repeated many times, presumably while it waits for input)
trace:comm:ClearCommError handle 0x4c cbInQue = 8 cbOutQue = 0
trace:file:ReadFile 0x4c 0x41222a70 8 0x41222530 (nil)
trace:file:FILE_TimeoutRead 0x4c 0x41222a70 8 0x41222530
trace:file:FILE_ReadFileEx file 0x4c to buf 0x41222a70 num 8 0x41222488 func (nil)
trace:file:GetOverlappedResult (0x4c 0x41222488 0x41222530 1)
trace:file:GetOverlappedResult waiting on 0x41222488
trace:file:FILE_AsyncReadService 0x41222488 0x41222a70
trace:file:FILE_AsyncReadService read 8 more bytes 8/8 so far
trace:file:GetOverlappedResult wait on 0x41222488 returned 192
trace:file:GetOverlappedResult waiting on 0x41222488
trace:file:GetOverlappedResult wait on 0x41222488 returned 0
It then continues to do this several times, reading 8 or 16 bytes at a time from
the serial port. There is then one more write/read exchange, then this:
trace:file:WriteFile 0x4c 0x40f01851 8 0x4122256c (nil)
trace:comm:ClearCommError handle 0x4c cbInQue = 0 cbOutQue = 0
trace:file:WriteFile 0x4c 0x40f01851 8 0x41222670 (nil)
trace:comm:ClearCommError handle 0x4c cbInQue = 0 cbOutQue = 0
This last line then repeats about 10,000 times before the program times out and
gives up on hearing anything.
I'm guessing that since it works slightly better with debugging enabled, that
there is a race condition at work here. Maybe the last packet never actually
got written to the serial port, or a response came and Wine lost it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1244>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.