http://bugs.winehq.com/show_bug.cgi?id=1265
------- Additional Comments From pmcnett(a)pm-sc.com 2003-02-10 19:35 -------
I didn't try your first fix but the second works!! This is great for Visual
FoxPro and Wine...
One thing though, not sure if this should be a separate bug report or not. If
I display some ToolTipText, and then switch to a different application, the
ToolTipText will be displaying on top of the foreground app's windows as well.
Actually, the ToolTipText will be on every desktop workspace, on top of all
other windows. I had previously noticed this phenomenon for dockable windows
that were currently undocked in the VFP IDE, so I'm assuming this is a
separate issue entirely and will likely file a separate bug report in a couple
weeks...
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=1258
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-10 18:36 -------
Hi, please attach a full --debugmsg +relay logfile.
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=1258>.
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
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-10 18:34 -------
Hi, please attach a --debugmsg +server logfile.
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=570
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-10 18:10 -------
OK, just submitted a fix (add GetSystemMetrics(SM_CYCAPTION) to vertical window
size).
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=570>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=291
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-10 18:09 -------
OK, just submitted a fix (add GetSystemMetrics(SM_CYCAPTION) to vertical window
size), fixing.
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=291>.
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
------- Additional Comments From dclark(a)akamail.com 2003-02-10 17:31 -------
Oh, cool. The patch I put on bug 1265 also fixes this 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=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
------- Additional Comments From dclark(a)akamail.com 2003-02-10 16:35 -------
It looks like this is a much better fix.
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 10 Feb 2003 22:33:20 -0000
@@ -887,6 +887,9 @@
UINT wvrFlags = 0;
BOOL bChangePos;
+ /* This is needed to flush pending X ConfigureNotify events on this window */
+ MsgWaitForMultipleObjectsEx( 0, NULL, 0, 0, 0 );
+
TRACE( "hwnd %p, swp (%i,%i)-(%i,%i) flags %08x\n",
winpos->hwnd, winpos->x, winpos->y,
winpos->x + winpos->cx, winpos->y + winpos->cy, winpos->flags);
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=1265
------- Additional Comments From dclark(a)akamail.com 2003-02-10 15:48 -------
And it looks like this patch fixes this bug. I am not real sure why this code is
here, so will have to study more before submitting. And there are already lots
of patches setting in the queue already :-)
An X ConfigureNotify event is a notification that a window has just been
changed. So it is not clear to me why Wine immediately then changes it again. I
will have to test with a bunch of apps to see if I can figure out what (if
anything) it is needed for.
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 10 Feb 2003 21:41:08 -0000
@@ -1609,8 +1611,8 @@
/* if nothing changed, don't do anything */
if (winpos.flags == (SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
SWP_NOACTIVATE)) return;
- SetWindowPos( hwnd, winpos.hwndInsertAfter, winpos.x, winpos.y,
- winpos.cx, winpos.cy, winpos.flags | SWP_WINE_NOHOSTMOVE );
+/* SetWindowPos( hwnd, winpos.hwndInsertAfter, winpos.x, winpos.y,
+ winpos.cx, winpos.cy, winpos.flags | 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=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=1272
------- Additional Comments From felipewd(a)elipse.com.br 2003-02-10 13:53 -------
You're right.
It turned out to be a Window Maker bug.
I tried the same program with gnome and it worked fine.
So, ok...the "main" bug is not a wine bug...but a minor bug still exists: The
window gets resized to a really tiniy value when minimized.
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 13:25 -------
I finally figured out that the attachments were gzip files. Netscape 7 thinks
they are named showattachment.cgi, and there were no other clues that I could
see to what they were. The "executable" unpacks into a .so file for some reason.
When I execute, it says I need libstdc++.so.5.
Anyway, I was able to compile from the source and run that. And yes, my patch
does not fix your app. On the otherhand, I don't get the symptom of it locking
up. Yes it is restored to a tiny window and I have to resize it by hand, but the
"hello world" is displayed just fine for me.
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=1265
------- Additional Comments From dclark(a)akamail.com 2003-02-10 13:03 -------
This is being caused because this sequence of events is taking place. Early on
the app creates two DCs for the tooltip with a default size of 66x20 pixels. One
is an offscreen DC for working in (ends up being 0xa18 on my system), and the
other is the DC that is used to actually display the tooltip on the screen
(0xa14). When it comes time to show the tooltip, the app moves and resizes both
DCs, and paints and writes in the text to the offscreen DC. It then copies this
into the screen DC and sends a signal to make it visible. Up to this point
everything is fine.
When the window is made visible, some events are received from the X queue,
which "catch up" the app. It sends two resize events to the offscreen DC, the
first resizes back to 66x20, which effectively clips the rest of the tooltip,
and the second resizes it back to the correct size. Unfortunately the contents
are now corrupted, but the app is assuming the offscreen DC is ok. The corrupted
offscreen DC is then copied to the screen DC.
When the tooltip is hidden and redisplayed, the same sequence of events occurs.
Except this time, the DCs were already at the correct size for the tooltip, so
no resizing back to 66x20 occurs, and the offscreen DC is not corrupted this
time. Even when the window is closed and reopened, it continues to use the DCs
it has already created, so no problem occurs.
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=1272
------- Additional Comments From felipewd(a)elipse.com.br 2003-02-10 12:43 -------
Well, Duane...I guess it got rejected because it does not work :)
The problem still exists...in fact, what seems to happen is that when the
window is SW_SHOWMINIMIZED, it also is resized to 0,0, it's not only minimized.
And when the user tries to restore the windows to normal (having to manually
resize the window to the "normal" size) state, the main window is locked, but
the menu seem to work (could be some flag not being set correctly).
To download the attachments...just click on them. They're are also available here:
ftp://ftp.elipse.com.br/pub/showWindow/showWindow-exe.tar.gz
ftp://ftp.elipse.com.br/pub/showWindow/showWindow-src.tar.gz
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 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.