http://bugs.winehq.com/show_bug.cgi?id=941
Summary: Keyboard doesn't work with "Desktop" option even with
DXGrab...
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pigeon(a)pigeond.net
Wine is still not capturing keyboard correctly with some DirectX games when
using with the "Desktop" option.
Without the "Desktop" option, "DXGrab" = "Y" will help solving such problems,
but not with "Desktop".
I found this problem with some DirectX games, I've tested so far with Cluedo and
Monkey Island 3.
Reference from an old bug report:
http://bugs.codeweavers.com/show_bug.cgi?id=616
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=941>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=940
Summary: msvcrt_argvtos not building args properly
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: bill(a)taniwha.org
msvcrt_argvtos is copying the data incorrectly. the args are all being copied to
past the end of the allocated buffer and all to the same location. Here's a
patch to fix it:
Index: dlls/msvcrt/process.c
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/process.c,v
retrieving revision 1.12
diff -u -r1.12 process.c
--- dlls/msvcrt/process.c 19 Jul 2002 03:24:50 -0000 1.12
+++ dlls/msvcrt/process.c 3 Aug 2002 00:16:11 -0000
@@ -117,7 +117,7 @@
a++;
}
- ret = (char*)MSVCRT_malloc(size + 1);
+ ret = (char*)MSVCRT_malloc(size);
if (!ret)
return NULL;
@@ -127,12 +127,12 @@
while (*a)
{
int len = strlen(*a);
- memcpy(ret+size,*a,len);
+ memcpy(p,*a,len);
p += len;
*p++ = delim;
a++;
}
- *p='\0';
+ p[-1] ='\0';
return ret;
}
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=940>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=495
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=495>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=494
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=494>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 503, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 505, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 504, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=939
------- Additional Comments From apa3a(a)yahoo.com 2002-08-02 12:50 -------
I suggest to "resolve invalid" and close the bugs if there is no help from the
reporter and we can't research the bug ourselves. It is not worth to spend time
on such bugs. Later, if the reporter decides after some time to help us or new
information appears the bug can be reopened.
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=939>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
------- Additional Comments From lionel.ulmer(a)free.fr 2002-08-02 12:10 -------
Just for your information, submitted a patch to wine-patches that makes it now
start on my box.
Now I can look at why the clipper does not work as it should :-)
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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=939
Summary: We need a resolution for abandoned bugs
Product: Bugzilla
Version: 2.14.2
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: bug list
AssignedTo: jnewman(a)codeweavers.com
ReportedBy: tony_lambregts(a)telusplanet.net
CC: wine-bugs(a)winehq.com
We need a resolution for bugs that are orphaned by their reporter. the current
resolutions are
* Fixed
* Duplicate
* Will not Fix
* Invalid Bug
* Fixed Later
* Remind to fix
* Works for me
There are a number of bugs that are marked as resolved because the reporter has
simply abandoned the effort. In some of the cases I think that "Works for me" or
perhaps "invalid" is appropriate. In other cases I have no way of verifying
whether the problem is fixed because I do not have access to the program that
caused the original bug report.
The biggest reason for this is that for proper QA these bugs should be verified
before they are closed but there is no way to verify them. However if we keep
them around then they are just clogging up the works. Having a resolution of
"Orphaned" or "Abandoned" would be a way of tracking these bugs and would be a
valid way of dealing with them for QA.
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=939>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
------- Additional Comments From lionel.ulmer(a)free.fr 2002-08-02 11:47 -------
It's strange because on my version of Wine it does not even start because of an
abort in the Wine code...
You sure you are using Wine and not WineX :-) ?
Otherwise, please attach a +ddraw trace of your execution of the program for us
to help you (and to see why it does work on your version and not on mine).
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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
------- Additional Comments From roz(a)one.net 2002-08-02 11:27 -------
I've added three screenshots, so you can see how the problem progresses as I
move the window from it's default top-left screen placement toward the middle of
the screen. Let me knnow if you have more questions.
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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
------- Additional Comments From roz(a)one.net 2002-08-02 11:26 -------
Created an attachment (id=247)
Screenshot #3
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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
------- Additional Comments From roz(a)one.net 2002-08-02 11:25 -------
Created an attachment (id=246)
Screenshot #2
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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
------- Additional Comments From roz(a)one.net 2002-08-02 11:24 -------
Created an attachment (id=245)
Screenshot #1
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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=616
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-02 11:19 -------
Open a new bug to report it please, and did you have dxgrab set to y, n, or did
you already try both?
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=616>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=745
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-02 10:13 -------
One more comment on this. When I do not set the desktop option I get the menu
from my window manager not wineconsoles menu. If use "Desktop" = "???x???" and I
click on wine icon get wineconsole menu.
When I am debugging I actually use
"Desktop" = "660x560"
If I use 640 x 480 and a font that is readable as soon as the output reaches the
bottom of the screen, I cannot see the last lines of the debug screen.
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=745>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
I dont' know if this has been brought up before or not, haven't searched
the archives or anything, but this seems to be dependant on how perl was
installed.
For some reason, when perl, 5.6.1 or 5.8.0 is configured with
./configure.gnu, when you go to build wine, in the winetest Makefile,
the ccflags variable (leftover from perl install) is included in
LDFLAGS. Obviously this is in error, but attempting to figure out if
this should be brought to Wine or Perl Developers. :-$ See the
following URLs for archives of the LFS mailing lists where this has been
previously discussed. The second seems to be more relevant.
http://archive.linuxfromscratch.org/mail-archives/lfs-dev/2002/07/0547.h
tml
http://archive.linuxfromscratch.org/mail-archives/blfs-support/2002/08/0
024.html
Thanks in advance
DJ Lucas
PS, if this has been previously identified, please CC me in the first
reply, no need to flood the mailing list. ;-)
http://bugs.winehq.com/show_bug.cgi?id=787
corporal_pisang(a)counter-strike.com.my changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From corporal_pisang(a)counter-strike.com.my 2002-08-02 01:34 -------
Your patch works ...
> wine --version
Wine 20020710
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=787>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |lionel.ulmer(a)free.fr
URL| |http://gens.consolemul.com/
Keywords| |download, source
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-01 23:45 -------
A screen shot would be nice. I love programs like 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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
roz(a)one.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From roz(a)one.net 2002-08-01 23:25 -------
*** 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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=936
Summary: Incorrect placement of DirectDraw output (offset outside
the Windows 'window')
Product: Wine
Version: 20020710
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: roz(a)one.net
When running Gens v2.00, a Sega Genesis/32X/CD emulator, the graphics that
should be inside the window are offset to the lower right side of the window and
beyond outside the border.
In the console, the following messages appear when I move the window around:
err:ddraw:DIB_DirectDrawSurface_Blt Negative values in LPRECT !!!
err:ddraw:DIB_DirectDrawSurface_Blt Negative values in LPRECT !!!
fixme:ddraw:DIB_DirectDrawSurface_Blt dwFlags DDBLT_WAIT and/or DDBLT_ASYNC:
can't handle right now.
err:ddraw:DIB_DirectDrawSurface_Blt Negative values in LPRECT !!!
err:ddraw:DIB_DirectDrawSurface_Blt Negative values in LPRECT !!!
err:ddraw:DIB_DirectDrawSurface_Blt Negative values in LPRECT !!!
You can see and download the program at http://gens.consolemul.com/
Let me know if you would like a screenshot of the error.
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=936>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=160
------- Additional Comments From roz(a)one.net 2002-08-01 23:09 -------
Johan, I upgraded to 20020710 and my Gabriel Knight 3 problem is fixed. The
sound works now. Thanks. I wonder if that will fix his GTA 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=160>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=935
Summary: DirectSound3D fixme
Product: Wine
Version: 20020710
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: roz(a)one.net
When playing the game, Gabriel Knight 3, I get the following message repeated a
lot in the console:
fixme:dsound:IDirectSound3DListenerImpl_CommitDeferredSettings stub
I can't determine what it's connected to--probably the background sounds
(fountain, birds, etc.).
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=935>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=923
pharouff(a)comcast.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From pharouff(a)comcast.net 2002-08-01 21:34 -------
Thank you for the responses. The fix appears to have worked. I still need to reboot into Windows to try it out, but it looks like everything is there. There are still two files that did not get fixed by decorrupt_explorer, maybe someone knows where they belong. C:\Program Files\!$!$!$!$.mm2 C:\Program Files\!$!$!$!$.msn As for the other comments, I did see the warning about Explorer, and I never attempted to manually run Explorer. But what happens when you try to install a program that automatically attempts to register the software via the internet? MOST programs do this now. The program I was trying to install is free vendor supplied software from a lighting manufacturer who registers the users. This might explain why the program locked up at the time that it did. Everything seemed to be working great, then BAM! It was probably trying to start the registration process. As for backing up, all the new files were stored in my $HOME directory on the Linux partition. I wasn't expecting it to screw with the Windows partition. While I understand this is ALPHA software, I was expecting this release to be more stable than the last, not less (especially after the glowing reviews I had read). Anyway, if your response is correct, the cause was Windows and not WINE. While I no longer believe it was your fault, I still feel that this is still a CRITICAL BUG that requires as a minimum some work around for protection. I tried the installation twice. The first time I used the temporary Windows directory approach. I know that after this attempt, my C:\Program Files directory was still intact, because I went looking for the Office files it was requesting. When that attempt didn't work, I followed the suggestion that pops up in the debug box and tried a second time with native Windows. I haven't done any programming since about 1988, so needless to say I don't understand the intricacies of c, perl, java, etc. But if you don't have enough information to fix this problem yet, there should be a way to add a temporary check to block any system calls to start Explorer and return an error like "Program Not Found" to the calling routine (or better yet redirect it to Netscape, Mozilla or Konqeror). So maybe some programs crash at this point, but at least it doesn't screw up the partition. If nothing else, get rid of the suggestion to try native Windows installation! This was my biggest mistake. After this experience, it's my opinion that any program that appears to run then locks up under fake Windows probably needs Explorer. While I'm impressed with the progress you've made since I first tried WINE last Christmas, I feel that, basically, WINE is completely unusable until this is fixed. Ever since Windows 98 came out virtually all Windows software uses Explorer. You can't avoid it. Bill Gates would have us believe it can't run without 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=923>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=616
------- Additional Comments From pigeon(a)pigeond.net 2002-08-01 16:39 -------
This problem still exists when using with the "Desktop" option. With the wine in
cvs. I just checked out yesterday (2002/08/01).
I'm not testing this with warcraft ii though, it's just another directx game
(Cluedo).
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=616>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=787
------- Additional Comments From dalgoda(a)ix.netcom.com 2002-08-01 15:44 -------
Try the following patch:
Index: winetest.c
===================================================================
RCS file: /home/wine/wine/programs/winetest/winetest.c,v
retrieving revision 1.5
diff -u -r1.5 winetest.c
--- winetest.c 10 Mar 2002 00:21:20 -0000 1.5
+++ winetest.c 1 Aug 2002 20:38:29 -0000
@@ -152,7 +152,7 @@
/* perl extension initialisation */
-static void xs_init(void)
+static void xs_init(pTHX)
{
extern void boot_wine(CV *cv);
newXS("wine::bootstrap", boot_wine,__FILE__);
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=787>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=934
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
Summary|Cpu usage is always 100% |Cpu usage is always 100%
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-08-01 14:58 -------
Hmm, that's probably because of evil message loop programming mistakes by the
author. We should list some cases of programs here doing this, and we should try
to find a viable countermeasure for it (or fix Wine alternatively if it turns
out that Wine is the problem in one case or another).
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=934>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=934
Summary: Cpu usage is always 100%
Product: Wine
Version: 20010112
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ddmk(a)r66.ru
with many programs (it make 98 ,95 but not NT,2000 ) please FIX IT if you can
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=934>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=933
------- Additional Comments From ddmk(a)r66.ru 2002-08-01 14:30 -------
Created an attachment (id=244)
bug reports & other files need to try 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=933>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=933
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
Summary|There is need a driver which|ttydrv needs a lot of
|is NOT require X windows and|improvement
|start service porgrams (such|
|a services in NT) which have|
|no output |
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-08-01 14:24 -------
You could try running a dummy X11 server (don't remember its exact name currently).
ttydrv needs a *lot* of improvement for more complicated apps, that's correct.
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=933>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=929
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-08-01 14:16 -------
Oh, heh. Sounds like someone's crying for help ! ;-)
Also, check out http://search.microsoft.com for any info you need.
And don't forget about the usefulness of --debugmsg +relay ...
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=929>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=505
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=505>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=928
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-08-01 14:13 -------
AddWeb 5 Professional (free download) even seems to *crash* due to unimplemented
flat scrollbars...
At least the exception follows almost instantly to the FIXME in the trace...
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=928>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=933
Summary: There is need a driver which is NOT require X windows
and start service porgrams (such a services in NT) which
have no output
Product: Wine
Version: 20020710
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ddmk(a)r66.ru
I can't start with ttydrv d2gs server (diablo2 close game server) it fail in reading
bitmap (or somewhere nearly)
also i can't start with ttydrv calc.exe although (sorry for my bad english) it is
documented .
eror are same
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=933>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=504
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=504>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=503
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=503>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 493, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 492, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 491, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 490, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=923
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-08-01 13:12 -------
Well, yet another luser who seems to be unable to do the first thing people are
expected to do (especially with alpha software):
reading the most important file, the README file.
(due to that amount of damage, I can understand such a reaction a bit, though)
To my parent:
"Don't bash Codeweavers because they aren't as perfect as Microsoft :-/"
Oh dear, I just hope you don't believe that.;-)
If anything, it is *Microsoft* who is not as perfect as CodeWeavers here,
since that filesystem corruption is being caused by *Explorer* renaming
directories to zilch due to relevant registry entries not being available (most
likely because people told Wine to use the Windows partition, but at the same
time they
forgot to tell it to also make use of the Windows registry entries !)
Wine has zero, zilch, nada responsibility here...
To the bug submitter: did my little script help ? Anything it didn't manage to 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=923>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=900
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-01 10:20 -------
I have no idea on how to reproduce the error you described, Wine snapshot 20020710
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=900>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=526
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |fgouget(a)codeweavers.com
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=526>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=527
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |fgouget(a)codeweavers.com
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=527>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=923
------- Additional Comments From jfh6(a)humboldt.edu 2002-08-01 03:54 -------
Maybe your work has some sort of backup of your files already. Don't bash
Codeweavers because they aren't as perfect as Microsoft :-/
Next time you want to use Wine, just make a fake windows directory that Wine
uses and it will be all gravy.
Just follow these easy to understand instructions:
http://www.winehq.com/Docs/wine-user/no-windows.shtml
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=923>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=932
jfh6(a)humboldt.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jfh6(a)humboldt.edu 2002-08-01 03:48 -------
I removed my previous winex installation and did the following to solve the
issue. Might have been bad Windows 98 installtion I was using... follow
instuctions below if you have a similar error:
1. simply follow their CVS instructions at the bottom of this screen:
http://www.transgaming.com/sources.php
2. remember to go into the "wine" directory it creates and delete the current
winex installation you have on your system by doing (make sure your root):
# make uninstall
3. then I created a "fake" windows by following this page(really easy):
http://www.winehq.com/Docs/wine-user/no-windows.shtml
4. then I did a FRESH install of half-life & counter strike in another
directory. Fixed a runtime error I had with xrender.c
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=932>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=932
Summary: WineX error: xrender.c:255: dec_ref_cache: Assertion
`entry->count > 0' failed.
Product: Wine
Version: 20020228
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jfh6(a)humboldt.edu
Happens just before I load a half-life: counter strike (connecting to a
non-secure server) with this command: wine hl.exe -- hl.exe -gl -console -game
cstrike
Here is what I get just before the runtime error occurs:
fixme:advapi:RevertToSelf (), stub
fixme:ntdll:NtOpenProcessToken (0xffffffff,0x00000008,0x4065f970): stub
fixme:advapi:SetThreadToken ((nil), cafe): stub (NT impl. only)
fixme:font:WineEngCreateFontInstance just using first face for now
fixme:font:WineEngCreateFontInstance just using first face for now
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel (0x4039b404,00020049,3):stub
fixme:dc:LockWindowUpdate (10021), stub!
fixme:dc:LockWindowUpdate (0), stub!
fixme:winsock:_get_sock_fd handle 0 is not a socket (GLE 6)
fixme:dc:LockWindowUpdate (10021), stub!
fixme:dc:LockWindowUpdate (0), stub!
fixme:dc:LockWindowUpdate (10021), stub!
fixme:dc:LockWindowUpdate (0), 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=932>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=485
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-31 20:00 -------
housekeeping re-opening
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=485>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 485, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|REMIND |
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=485
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|REMIND |
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-31 20:00 -------
housekeeping re-opening
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=485>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 485, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |REMIND
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=485
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |REMIND
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-31 19:58 -------
houskeeping -- marking as resolved REMIND
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=485>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From JeffMay(a)earthlink.net 2002-07-31 19:51 -------
Here are the native DLLs I had to employ to make Quicken work right:
ADVAPI32.DLL
COMCTL32.DLL
COMDLG32.DLL
GDI32.DLL
MSVCRT.DLL
SHLWAPI.DLL
USER32.DLL
Jeff
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=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=485
vberon(a)mecano.gme.usherb.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|vberon(a)mecano.gme.usherb.ca |wine-bugs(a)winehq.com
------- Additional Comments From vberon(a)mecano.gme.usherb.ca 2002-07-31 18:17 -------
Since I haven't worked on this for a couple months, I thought of giving it back
to Mr. Bugs.
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=485>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=900
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-31 14:36 -------
I was able to install Capture, Layout and PSpice with the following setup
wine snapshot 20020605
[Version] "windows" = "win98" (in .wine/config)
actual windows installed win98
I could not install this program using the current CVS so I should start another
bug for that. Also I had trouble installing it useing other windows versions
"NT40" and "win2k" sort of worked but gave me too many problems probably due to
not actualy having nt40 or win2k dlls
If you could give a step by step procedure to reproduce the bug I would
appreciate 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=900>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=929
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-31 11:42 -------
TCM_HIGHLIGHTITEM is an unimplemented message in TAB_WindowProc in the source
code it is in .dlls/comctl32/tab.c
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=929>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=928
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-31 11:33 -------
./wine/dlls/comctl32/flatsb.c has this (InitializeFlatSB) as a 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=928>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=927
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-31 11:26 -------
This is non critical code, but probably not that bad a place to start developing
wine. The following is extracted frome the current source code
./wine/dlls/comctl32/flatsb.c
/***********************************************************************
*
FlatSB_SetScrollProp (COMCTL32.36)
*/
BOOL WINAPI
FlatSB_SetScrollProp(HWND hwnd, UINT index, INT newValue, BOOL flag)
{
TRACE("[%04x] index=%u newValue=%d flag=%d\n", hwnd, index, newValue, flag);
FIXME("stub\n");
return FALSE;
}
/***********************************************************************
* From the Microsoft docs:
* "If flat scroll bars haven't been initialized for the
* window, the flat scroll bar APIs will defer to the corresponding
* standard APIs. This allows the developer to turn flat scroll
* bars on and off without having to write conditional code."
*
* So, if we just call the standard functions until we implement
* the flat scroll bar functions, flat scroll bars will show up and
* behave properly, as though they had simply not been setup to
* have flat properties.
*
* Susan <sfarley(a)codeweavers.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=927>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-31 11:10 -------
So we need to know which dll's these were. That should help a little
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=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=931
Summary: Toolbar Drag Redraw Problem
Product: Wine
Version: 20020710
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: dusanv(a)cadlink.com
When drag a floating toolbar the outline of it doesn't get redrawn at all. The
effect can be seen in this screen shot (5.3 kB):
http://www.dusanv.net/files/wine-ss.png
The source of the app in the screen shot can be obtained here (47 bK):
http://www.dusanv.net/files/ToolBarTest.zip
It is a VC++ 6 SP5 project. The buillt debug app with all the 'pdb' files is here:
http://www.dusanv.net/files/Debug.zip
Thanks,
Dusan
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=931>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=929
------- Additional Comments From dclark(a)akamail.com 2002-07-31 10:16 -------
The easy way to find that info is to go to:
http://source.winehq.org/ident
Then enter for example "TAB_WindowProc" and find out that function is in
dlls/comctl32/tab.c.
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=929>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=930
------- Additional Comments From giacummo(a)adinet.com.uy 2002-07-31 08:06 -------
Created an attachment (id=243)
debug log compressed
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=930>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=930
Summary: Wine failed with return code 5
Product: Wine
Version: 20020411
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: giacummo(a)adinet.com.uy
I am trayin to run CardScan (www.cardscan.com) in linux, but it fail.
The last lines of the debug say:
trace:heap:RtlFreeHeap (40220000,00000002,40258a4c): returning TRUE
trace:heap:RtlFreeHeap (40220000,00000002,40258a0c): returning TRUE
trace:heap:RtlDestroyHeap 40a70000
trace:heap:RtlFreeHeap (40220000,00000002,402589b0): returning TRUE
trace:heap:RtlAllocateHeap (40220000,00000002,00000018): returning 402589b0
Wine failed with return code 5
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=930>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From JeffMay(a)earthlink.net 2002-07-31 07:34 -------
Latest update... (sorry it's been so long; family emergency came up over the weekend)
The bug still exists, but has a work-around. I updated my Wine configuration to use only native DLLs. I then
ran Quicken, noting on the "can't find xxxxx.DLL" messages. My wife's machine runs Windows 98, so I was able
to experimentally move the missing DLLs to the .wine/fake_windows/Windows/System directory. Everything now
seems to work. When I get back home tonight I'll make a list of the required DLLs; there was about six that
needed to be brought in.
Jeff (*whew*)
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=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=929
Summary: fixme:tab:TAB_WindowProc Unimplemented msg
TCM_HIGHLIGHTITEM
Product: Wine
Version: 20010824
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: npapadon(a)yahoo.com
Results when running Kenwood executable.
I AM A DEVELOPER. COULD YOU PLEASE GIVE ME POINTERS ON
WHERE TO POKE AROUND TO IMPLEMENT THESE METHODS?
Insight much appreciated.
Thanks
Nick
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=929>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=928
Summary: fixme:commctrl:InitializeFlatSB stub
Product: Wine
Version: 20010824
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: npapadon(a)yahoo.com
Results when running Kenwood executable.
Additionally:
fixme:comm:SetupComm insize 1024 outsize 1024 unimplemented
fixme:commctrl:FlatSB_SetScrollProp stub
I AM A DEVELOPER. COULD YOU PLEASE GIVE ME POINTERS ON
WHERE TO POKE AROUND TO IMPLEMENT THESE METHODS?
Insight much appreciated.
Thanks
Nick
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=928>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=927
Summary: fixme:commctrl:FlatSB_SetScrollProp stub
Product: Wine
Version: 20010824
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: npapadon(a)yahoo.com
Results when running Kenwood executable.
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=927>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=493
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=493>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=492
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=492>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=491
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=491>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=490
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
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=490>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=926
Summary: Diablo II does not run at all with wine
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: Speeddymon(a)yahoo.com
Upon last attempt at running Diablo II with regular wine, i.e. not WineX,
Diablo II doesn't even start... More than likely it is due to the lack of some
directx components... unfortunately with work taking most of my time and my
computer being in the shop right now, i am unable to test with the latest cvs
or snapshot releases, but I will post an update asap...
-Dustin
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=926>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=566
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From Speeddymon(a)yahoo.com 2002-07-30 15:44 -------
heh this issue is resolved, his problem is with a copy of winex, i will open a
new bug for wine diablo ii....
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=566>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=566
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 23:17 -------
Dustin marked this as resolved because winex runs Diablo II and it seems that
wine does not. To me this is not a valid reason for closing this bug. Reopening.
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=566>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=562
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 23:11 -------
WFM -- Verifying
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=562>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=558
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 23:06 -------
I suppose its OK to verify 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=558>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=552
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 23:00 -------
Verifying as per reporters comments.
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=552>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=525
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 22:57 -------
Thats another ten minutes of my life wasted. Stupid program. Wasted bug report.
Yes the cursed thing works.
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=525>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=524
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.udpsoft.com/eye/
Keywords| |download
Version|unspecified |CVS
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 22:42 -------
Andriy:
I could not get this program to install. I have a ADSL connectin to the
internet. The install window says connecting to download server but it just sits
there. If I change the directory and hit enter a message box pops up with a
disclamer and two buttons one "OK" and the other "cancel" If I click on "OK"
another message box pops up with the title "Fatal error", the message "Couldn't
execute Eye" and an "OK" button. If I click on the "OK" button the program shuts
down. Is there something that I am missing? No crash as reported but no install
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=524>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=465
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 21:54 -------
SHRegGetUSValueA is not a stub anymore. Verifying.
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=465>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=463
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 21:48 -------
Verifying as per reporters comments.
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=463>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=455
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 21:00 -------
Verifying
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=455>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=453
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 20:59 -------
Marking as verified as per reporters comments.
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=453>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=449
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.eudora.com/downlo
| |ad/
Status|RESOLVED |UNCONFIRMED
Keywords| |download
Version|unspecified |CVS
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 20:57 -------
I fought my way through this install and I think it is appropriate to reopen
this bug report. I think we can do much better. After all anyone can test this.
I tested with version 5.1.1 of Eudora
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=449>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=446
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 20:29 -------
./files/files.c looks like the place. around line 813.
FIXME("SetFileAttributes expected the file '%s' to be a directory\n",
lpFileName);
It now has the /n at the end. Verifying.
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=446>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=433
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.cheating-
| |death.com/
Status|RESOLVED |VERIFIED
Keywords| |download
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 19:13 -------
It looks like SetWindowsHookEx has been implemented in wine. ./windows/hook.c
Verifying.
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=433>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=924
Summary: WinZip 8.1 won't start (regression)
Product: Wine
Version: CVS
Platform: PC
URL: http://www.winzip.com/
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tony_lambregts(a)telusplanet.net
The following patch(s) cause WinZip to fail to work
http://www.winehq.com/hypermail/wine-cvs/2002/07/0191.html
and **this one by Alexandre Julliard which is required by the previous patch.
http://www.winehq.com/hypermail/wine-cvs/2002/07/0192.html
This bug is reproduced as follows:
1. start WinZip --> (for me it's) wine "F:\program files\winzip\winzip32.exe"
2. When the startup screen appears click on the "I agree" button.
3. A message box pops up with the Title "WinZip","Out of resources error, unable
to continue. " for the text, and an "OK" button. - click on "OK" button.
4. Another message box pops up with the Title "WinZip", two buttons and the
following text:
>
> WinZip internal error in file listview.c line 1236
>
> *WinZip will exit. Please restart WinZip and try again.*
>
> If this is a recurring problem and you would like WinZip to create a log
> file with details about the error so that you can report this problem to the
> developers, you can do so now.
>
The two buttons are "Close WinZip" and "Close WinZip after creating error log file"
Clicking on either button will close the wine session.
Wine Outputs the following fixmes/errors:
fixme:toolbar:TOOLBAR_CheckStyle [10026] TBSTYLE_ALTDRAG not implemented
fixme:toolbar:TOOLBAR_CheckStyle [10026] TBSTYLE_ALTDRAG not implemented
fixme:listview:LISTVIEW_UnsupportedStyles !LVS_SHAREIMAGELISTS
err:shell:SHGetFileInfoA pidl is null!
fixme:listview:LISTVIEW_SetColumnOrderArray iCount 9 lpiArray 0x405b689c
err:shell:SHGetFileInfoA pidl is null!
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=924>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
Ok Thanks alot. I've just upgraded to woody, and I've run into some
pressing problems that require immediate attention. But I'll be glad to
tell you the steps I use to determine if the software works if you like.
--Greg
http://bugs.winehq.com/show_bug.cgi?id=419
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://rogerwilco.gamespy.co
| |m/products/downloads/rw_win_
| |dload.html
Keywords| |download
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 11:45 -------
cannot verify this, I don't have a mike. Software installed OK otherwise.
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=419>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=502
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 09:26 -------
Verifying
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=502>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=489
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 09:25 -------
Verifying
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=489>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=483
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 09:23 -------
Verifying
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=483>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=866
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
BugsThisDependsOn|531, 538, 539 |
Status|NEW |RESOLVED
Keywords|FIXME |
Priority|P1 |P5
Resolution| |LATER
Target Milestone|0.9.0 |---
------- Additional Comments From mcbridematt(a)hotmail.com 2002-07-29 07:40 -------
Removing all dependencies, Changing status to later, removing FIXME status,
removing 0.9.0, changing priority to P5, ttydrv almost worked, but x11drv still
doesn't.
Clean up x11drv DLL dependency mess and fixed some capitilisation problems (wine
should look for the file any way), because running ttydrv, it complained of not
finding a MSVCRT.dll, when it was named msvcrt.dll
Sorry for the quick resolutions, but I'm leaving this until I upgrade to the
latest redhat rawhide.
(Clue - look at rpm sources last year)
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=866>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 502, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=502
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From mstefani(a)redhat.com 2002-07-29 07:23 -------
patch was commited to cvs
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=502>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 489, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=489
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From mstefani(a)redhat.com 2002-07-29 07:22 -------
patch was commited to cvs
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=489>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 483, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
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=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=483
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From mstefani(a)redhat.com 2002-07-29 07:18 -------
patch was commited to cvs
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=483>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=866
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
BugsThisDependsOn| |531, 538
AssignedTo|mcbridematt(a)hotmail.com |wine-bugs(a)winehq.com
Severity|critical |blocker
Status|ASSIGNED |NEW
Version|20020411 |20020710
------- Additional Comments From mcbridematt(a)hotmail.com 2002-07-29 07:05 -------
It's a blocker!.
Anything that has X11drv in it, I've made a dependency
(temporarily reverting to codeweavers-wine, attempting to diff codeweavers-wine
source)
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=866>.
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
48 NEW PrgWin95/98: System metrics differ from the Win9x value
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
61 NEW winemaker: Add support for the Visual C++ project files
66 NEW PrgWin95: Custom cursor display bug
68 NEW Winelib: SEH support
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
84 ASSI Rewrite documentation for Running Wine chapter
90 NEW Compile Wine with -DSTRICT
96 NEW DLL Separation (MetaBug)
123 NEW ComboBoxes and keyboard movements: Closing
125 NEW Redraw leaves no widgets in window
128 NEW Segfaults on trying to open fontdlg for AIM95
129 NEW Crash when exiting AIM95
130 NEW Win3.1 program function keys and ALT/SHIFT/CTRL don't w
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
154 NEW Fonts not loaded
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
185 NEW Checkpoint Firewall-1 Gui doesn't work because of starn
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.
209 NEW Wine setup ends with TCL error and no config file is wr
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 NEW 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
297 NEW implement PeekNamedPipe
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
326 NEW Implement an Esd sound module
327 NEW CodeWeavers Preview Meta Bug
330 NEW Improve RichEdit headers
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
392 NEW Endless loop of redrawing a constantly growing windoq
397 NEW System hangs while trying to play a sound
413 NEW age of camelot needs wininet.InternetOpenUrlA
416 NEW Missings exports in winsocks
421 NEW Implement a DIB engine
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
480 NEW Convert HBITMAP to a void* (references: 311)
481 NEW Convert HBRUSH to a void* (references: 249)
482 NEW Convert HDRVR to a void* (references: 37)
483 NEW Convert HENHMETAFILE to a void* (references: 25)
484 NEW Convert HFONT to a void* (references: 200)
486 NEW Convert HINSTANCE to a void* (references: 308)
487 NEW Convert HKEY to a void* (references: 362)
488 NEW Convert HMENU to a void* (references: 279)
489 NEW Convert HMETAFILE to a void* (references: 32)
490 NEW Convert HMIDI to a void* (references: 7)
491 NEW Convert HMIDIIN to a void* (references: 5)
492 NEW Convert HMIDIOUT to a void* (references: 12)
493 NEW Convert HMIDISTRM to a void* (references: 6)
494 NEW Convert HMIXER to a void* (references: 4)
495 NEW Convert HMIXEROBJ to a void* (references: 5)
496 NEW Convert HMMIO to a void* (references: 20)
498 NEW Convert HPALETTE to a void* (references: 34)
500 NEW Convert HRGN to a void* (references: 179)
501 NEW Convert HRSRC to a void* (references: 86)
502 NEW Convert HTASK to a void* (references: 17)
503 NEW Convert HWAVE to a void* (references: 9)
504 NEW Convert HWAVEIN to a void* (references: 4)
505 NEW Convert HWAVEOUT to a void* (references: 15)
506 NEW Convert HKL to a void* (references: 40)
507 NEW Convert HDC to a void* (references: 804)
508 NEW Convert HANDLE to a void* (references: 1219)
509 NEW Convert HWND to a void* (references: 3486)
510 NEW Convert HACCEL to a void* (references: 23)
517 NEW Could not load wprocs.dll
526 NEW Document the regression testing framework
527 NEW Running C regression tests on Windows with MSVC
529 NEW Running Perl regression tests on Windows
530 NEW Package the regression tests for Windows
531 NEW DLL Separation: ddraw from gdi32
532 NEW DLL Separation: gdi32 from ttydrv, x11drv (BITMAP_Drive
533 NEW DLL Separation: gdi32 from ttydrv, x11drv (PALETTE_Driv
534 NEW DLL Separation: gdi32 from ttydrv, x11drv (color init)
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
539 NEW DLL Separation: x11drv from user32 (caret)
540 NEW DLL Separation: x11drv from user32 (clipboard)
541 NEW DLL Separation: x11drv from user32 (drag and drop)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
544 NEW DLL Separation: x11drv from ntdll (Options)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
548 NEW DLL Separation: user32 from ntdll (ATOM_Init)
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
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.
681 NEW Two of the shlwapi DLL regression tests fail under wine
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
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
746 NEW wrc gives segfault when creating kernel.res
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
757 NEW Sound bug: only sometimes - wodDsCreate DirectSound fla
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
765 NEW PrgWin95: Off by one error in scrollbar position
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
787 NEW wine-20020605 compile error (`perl_parse' from incompat
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
821 NEW grpconv.exe -o -> loaded .so but dll imm.dll still not
823 ASSI Printing with CUPS does not work automatically
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
826 NEW Wine has exited with code error 1 HELP!!
832 NEW Add Direct3D support
833 NEW Add support for inferior function calls
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
843 ASSI CreateFile returns ERROR_SHARING_VIOLATION instead of E
845 NEW gcc Remote debugging
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
854 NEW ld: cannot find -lgdbm on compilation
856 ASSI Window icons dont appear for VB programs
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 err:clipping:CLIPPING_UpdateGCRegion and fixme:process:
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
871 NEW my application can't create an active X object
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 NEW Win9xism in shell32 (MapSL)
874 NEW Unixisms and Wineism in shell32.dll
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'
880 NEW Unhandled shell file operation 4
881 NEW Mouse cursor not blanked in opengl game
882 NEW Alpha Centauri: Text does not show in the main screen m
885 NEW Screen Corruption in riven
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
910 NEW foreground is the same as background color in winmx / s
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
-------------------------------------------------------------------------
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=371
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 00:20 -------
Verifying
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=371>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=342
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-29 00:10 -------
wine.conf has been replaced by ~/.wine/config a long time ago, this is invalid.
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=342>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=648
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 23:55 -------
Verifying
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=648>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=431
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 23:53 -------
Verifying.
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=431>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=745
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 23:32 -------
In my case there is a wine icon in the title bar (top left corner) next to the
words wine console. If you click on the icon a menu pops up with default as the
second to last option. clicking on default brings up a window with three tabs.
Fonts is the second tab. You can select the font you want but the change does
not affect the current session but will come into effect the next time you start
up wine console. (Yes its a real PITA)
You will need to experiment with the font a bit to find one that works for you.
If the font is too large it makes wine console bigger than my desktop (600x800)
which is another real PITA.
Do you think that I should 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=745>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=923
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 23:05 -------
I'll bet you ran explorer.exe, and since you think your system is ruined I can
understand that you are ticked. I just want to ask you this. Do you always run
alpha software your system without backup?
Take a look at the README file that should have come with wine. In it you will
find this.
>>>>>>>>
Wine is not yet complete, so several programs may crash. Provided you set up
winedbg correctly according to documentation/debugger.sgml, you will be dropped
into a debugger so that you can investigate and fix the problem.
For more information on how to do this, please read the file
documentation/debugging.sgml.
You should backup all your important files that you give Wine access
to, or use a special Wine copy of them, as there have been some cases
of users reporting file corruption. Do NOT run Explorer, for instance,
if you don't have a proper backup, as it renames/cripples several
directories sometimes. Not even other MS apps such as e.g. Messenger are safe,
as they launch Explorer somehow. This particular corruption (!$!$!$!$.pfr)
can at least partially be fixed by using
http://home.nexgo.de/andi.mohr/download/decorrupt_explorer
>>>>>>
Now hopfully this little program can fix this up for you.
The Moral of this story: There is no such thing as too much backup.
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=923>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=745
------- Additional Comments From idstewart(a)compuvative.com 2002-07-28 22:43 -------
This is in response to Tony Lambregt's comment c. 07-12-2002.
How do I go about selecting a font? Based on the comment I would expect their
to be a menubar/toolbar to select fonts from, but when I run wcmd (or winedbg)
there isn't any
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=745>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=923
Summary: WINE DESTROYED MY SYSTEM!
Product: Wine
Version: 20020411
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pharouff(a)comcast.net
I've had wine on my Red Hat 7.2 system for a while. I finally got around to
experimenting with it last weekend (7/21). I used Wine Configuration in KDE to
set up my account and tried to install Cooper Luxicon lighting design software.
I could get it to install in start up, but it locks up at the open file screen.
I haven't been in Windows all week.
This evening (7/28) I booted up in Windows to get some business work done and
discovered that Wine had deleted my entire C:\Program Files directory and
replaced it with what appear to be Wine DLLs. I've never seen these files before
in this directory.
Now my C:\Program Files directory only contains:
!$!$!$!$.cfr
System
ado
msadc
OLE
DB
Common Files
!$!$!$!$.msr
dao2535.tlb
dao350.dll
odbc
Data Sources
System
ado
$!$!data.ie5
msadc
WindowsUpdate
Skins
Visualizations
Where are all of my programs files? Everything's gone!
What kind of demented programmer would do this without warning the user and
giving him a chance to back up the files somewhere else?
I'm really f****d. I have no way of restoring half of those programs and I can't
get my work done. I was depending on being able to finish a project that's due
tomorrow. I can lose my job over this!
Needless to say, I'm not going to trust Codeweavers software again.
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=923>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=922
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 20:36 -------
Your problem with winedbg/wineconsole sounds like my experience with bug 745 .
Could you have a look at it.
A back trace (bt) in winedbg would be more usefull than the just the trace that
you attached (a lot of the trace looks like the setup for winedbg.) Your problem
with winedbg/wineconsole sounds like my experience with bug 745. If you look at
bug 745 you can see how I got around it. Its not really a fix and up untill now
I thought it was just me. So if you have any insights please add them to the bug
report or at least confirm that this is the same 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=922>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=922
------- Additional Comments From idstewart(a)compuvative.com 2002-07-28 19:05 -------
Created an attachment (id=242)
Last 200 lines from wine --debugmsg +relay Setup.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=922>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=922
Summary: Baldur's Gate II Setup.exe fails to run
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: idstewart(a)compuvative.com
When running Setup.exe from Baldurs Gate II CD1, the progress bar box for
Install Shield is displayed but not properly painted. Shortly thereafter the
wineconsole is launched (The fonts are 'squished' so I can't actually read what
is displayed)
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=922>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=426
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.cygwin.com/downlo
| |ad.html
Status|RESOLVED |UNCONFIRMED
Keywords| |download
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 13:02 -------
I get the following when I run setup.exe this is with current CVS
Unhandled exception: unimplemented function advapi32.dll.SetTokenInformation
called in 32-bit code (0x40753052).
In 32-bit mode.
0x40753052 (__wine_unimplemented+0x52 [advapi32.spec.c:47] in
C:\WINDOWS\SYSTEM\ADVAPI32.DLL): jmp 0x4075304c (__wine_unimplemented+0x4c
[advapi32.spec.c:47] in C:\WINDOWS\SYSTEM\ADVAPI32.DLL)
50 void __wine_stub_advapi32_dll_4(void) {
__wine_unimplemented("AccessCheckAndAuditAlarmA"); }
Wine-dbg>
Reopening.
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=426>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=420
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://miranda-
| |icq.sourceforge.net/download
| |.php
Keywords| |download, source
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 12:36 -------
I am really tempted to reopen 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=420>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=417
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 12:11 -------
I run programs that have a space in the path name all the time. Verifying
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=417>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=415
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 12:08 -------
I tried CaRine 3.1 demo and it works fine for this issue. Verifying.
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=415>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=395
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 11:08 -------
Verifying
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=395>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=394
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 11:08 -------
Verifying as per reporters comments
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=394>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=391
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 11:06 -------
WFM -- Verifying
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=391>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=383
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 11:04 -------
Verifying 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=383>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=382
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 11:02 -------
Verifying 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=382>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=160
------- Additional Comments From johane(a)lysator.liu.se 2002-07-28 06:53 -------
Now, back to the original issue: Is GTA still a problem with later versions?
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=160>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=160
------- Additional Comments From johane(a)lysator.liu.se 2002-07-28 06:44 -------
About Gabriel Knight 3: Try updating your Wine to a newer 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=160>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=380
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.codamusic.com/cod
| |a/np.asp
Keywords| |download
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-28 00:51 -------
Ok after spending over 2 hours trying to install this font in linux I am giving
up (for the night at least) I found this link at the Linux documentation Progect
http://www.tldp.org/HOWTO/Font-HOWTO/
I thought it would be more helpfull... Maybe I'm just tired but...
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=380>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=379
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-27 22:51 -------
Verifying.
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=379>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=378
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-27 22:50 -------
I think its safe for me to verify 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=378>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=372
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-27 22:28 -------
Wine does Not do VXD's Verifying
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=372>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=353
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-27 22:07 -------
Closing as per reporters instuctions.
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=353>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=338
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-27 21:50 -------
Verifying based on Reporters comments.
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=338>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=337
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-27 21:47 -------
I think its sfe to verify this bug. wine versioning works pretty good and as far
as the apps DB is concerned Halflife seems to install without many 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=337>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=334
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-27 21:42 -------
WFM -- Verifying
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=334>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=160
------- Additional Comments From roz(a)one.net 2002-07-27 19:49 -------
Same symptoms with Gabriel Knight 3. Sound during the opening Sierra splash
screen, but no sound in the game, with this repeating with every sound request
(when he goes to talk):
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel (0x403b4ce4,00010021,3):stub
fixme:dsound:IDirectSoundBufferImpl_QueryInterface
{279afa84-4981-11ce-a521-0020af0be560}: I know about this GUID, but don't
support it yet
I'm using Wine version 20020509 on Mandrake Linux 8.2 x86.
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=160>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=921
Summary: Documentation says Wine and CUPS get along - they don't
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-documentation
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: wowbagger(a)sktc.net
The documentation on Wine printing suggests that the best solution to printing
under Wine is to use CUPS - that if you have CUPS set up, printing "just works"
Wrong - Wine cannot correctly identify what printers I have under CUPS, nor can
it configure them - in fact most attempts to manipulate print setup cause Wine
to fault.
Until Wine and CUPS actually get along, I would suggest the documentation be
changed to reflect 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=921>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=920
Summary: _fdopen should not rewind file
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: bill(a)taniwha.org
When running quakeforge (http://quakeforge.net/) in wine, it is unable to read
files from paks due to the use of _fdopen and _fdopen rewinding the file causing
qf to always read the first N bytes of the pak file. I commented out the call to
MSVCRT_rewind and everything worked beautifully.
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=920>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=303
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 22:35 -------
WFM -- Verifying
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=303>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=302
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.timex.com/downloa
| |ds/TIDL201.EXE
Status|RESOLVED |VERIFIED
Keywords| |download
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 21:39 -------
This looks like it runs perfectly. Verifying.
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=302>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=300
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 21:18 -------
I think it is safe to verify 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=300>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=281
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 12:45 -------
This works -- Verifying
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=281>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=277
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 12:26 -------
Not a valid bug report -- Verifying
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=277>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=270
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 12:23 -------
Verifying as per reporters comments.
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=270>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=261
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 12:19 -------
WFM -- Verifying
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=261>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=258
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 12:15 -------
WFM -- Verifying
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=258>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=247
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 12:08 -------
WFM -- Verifying
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=247>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=238
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 12:06 -------
WFM -- Verifying
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=238>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=233
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-26 12:03 -------
Not a valid 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=233>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=221
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=221>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=205
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=205>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=132
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=132>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=200
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=200>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=203
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=203>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=169
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=169>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=184
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=184>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=181
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=181>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=148
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=148>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=236
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=236>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=218
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=218>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=146
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=146>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=143
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=143>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=122
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=122>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=197
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=197>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=198
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=198>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=179
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=179>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=195
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=195>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=159
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=159>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=158
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=158>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=190
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=190>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=156
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=156>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=136
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=136>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=153
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=153>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=135
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=135>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=133
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|VERIFIED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-25 19:37 -------
Closing
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=133>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=905
------- Additional Comments From gnutt(a)belzberg.com 2002-07-25 15:09 -------
There's nothing in particular in debugmsg's that stand out. Connection
established, messages communicated.
As we discussed in email, it seems to require debug TRACEs in the
dlls/wsock32/*.c or dlls/winsock/*.c or dlls/wininet/*.c files.
You also suggested it could be in the winserver (server/*.c), although this
isn't as likely.
I may have been incorrect in my previous report saying that it was knocking
off the last character only. It seems I could be losing 2 characters, which
would likely cause more of a problem than just losing one.
I don't have the time to do the further debugging on this, unless I'm given
something else specific to look for and report, but I'm sure that this bug is
a showstopper for anyone who uses pcAnywhere and some other network
applications and have been having 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=905>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=885
------- Additional Comments From dclark(a)akamail.com 2002-07-25 13:00 -------
I think that slowing down redrawing is actually masking the problem, rather than
fixing it somewhat. I noticed that what Riven appears to do is measure how long
it takes to perform a scroll, and if it is too long, Riven does fewer scrolls
with larger chunks. I think this is what it is doing what it initially does
several zero length scrolls. And specifically, what makes it appear to work is
that if scrolling takes really long, it does the scroll in a single step. Since
the painting of the fill image has always worked, if the fill image is the
entire thing, it appears to work.
So in short, I am less confident now that it really is a timing issue.
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=885>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=919
Summary: FlashFXP 1.4.3 crashes while trying to read "MZ" magic
from base address
Product: Wine
Version: CVS
Platform: PC
URL: http://www.flashfxp.com
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: andi(a)rhlx01.fht-esslingen.de
This FlashFXP version has a rather interesting crash:
It tries to read the "MZ" (DOS binary) flag from (varying !) base addresses
like e.g. 0x08040000 or 0x40470000.
This could probably be some sort of encryption or so.
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=919>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=866
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
BugsThisDependsOn| |539
AssignedTo|wine-bugs(a)winehq.com |mcbridematt(a)hotmail.com
Status|NEW |ASSIGNED
------- Additional Comments From mcbridematt(a)hotmail.com 2002-07-25 02:31 -------
Added 539 as a dependency. It might solve 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=866>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=918
------- Additional Comments From agalakhov(a)ifmlrs.uran.ru 2002-07-25 01:40 -------
Created an attachment (id=241)
Letters (or sometimes squares) are shown instead of numbers
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=918>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=918
Summary: Fonts are rendered strangely
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: agalakhov(a)ifmlrs.uran.ru
Hello!
I tried to run Microcal Origin 6.0 under Wine. It displays the labels
on the graph strangely. I also tried to change
the font setings in Wine - it does not help.
My configuration is:
RedHat 7.3, Wine got from Dataparty
all fonts are loaded via XFS
Wine uses Cronyx (cyrillic) fonts by default
tried to load native Windows TTFs via XFS - doesn't help
the same via Wine TTF support - doesn't help
native TTFs via XFS + change defaults from Cronyx to koi-8 TTF -
doesn't help, problems with cyrillic (?!)
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=918>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=917
Summary: Cursor jumps strangely
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: agalakhov(a)ifmlrs.uran.ru
The mouse cursor jumps strangely in Wine when some programs (for
example, KDE AMOR) are running together with some program under Wine.
I see this cleanly when Origin 6.0 is running together with Amor.
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=917>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=415
agalakhov(a)ifmlrs.uran.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From agalakhov(a)ifmlrs.uran.ru 2002-07-24 23:46 -------
This bug seems to be solved. 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=415>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=889
tuiningas_ml(a)shaw.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tuiningas_ml(a)shaw.ca 2002-07-24 22:42 -------
The proposed patch that I made was wrong but it seems that someone else made the
right patch elsewhere so it is now fixed. I guess the moral of the story is: if
you wait long enough, someone else will do it for you.... :-)
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=889>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=916
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-24 20:10 -------
This is correct DrawDibProfileDisplay is mapped as a stub in
/dlls/msvidio/msvfw32.spec.c The relevant info is as follows
The DrawDibProfileDisplay function determines settings for the display system
when using DrawDib functions.
BOOL DrawDibProfileDisplay(
LPBITMAPINFOHEADER lpbi
);
Parameters
lpbi
Pointer to a BITMAPINFOHEADER structure that contains bitmap information. You
can also specify NULL to verify that the profile information is current. If the
profile information is not current, DrawDib will rerun the profile tests to
obtain a current set of information. When you call DrawDibProfileDisplay with
this parameter set to NULL, the return value is meaningless.
Return Values
Returns a value that indicates the fastest drawing and stretching capabilities
of the display system. This value can be zero if the bitmap format is not
supported or one or more of the following values.
Value Description
PD_CAN_DRAW_DIB DrawDib can draw images using this format. Stretching might or
might not also be supported.
PD_CAN_STRETCHDIB DrawDib can stretch and draw images using this format.
PD_STRETCHDIB_1_1_OK StretchDIBits draws unstretched images using this format
faster than an alternative method.
PD_STRETCHDIB_1_2_OK StretchDIBits draws stretched images (in a 1:2 ratio) using
this format faster than an alternative method.
PD_STRETCHDIB_1_N_OK StretchDIBits draws stretched images (in a 1:N ratio) using
this format faster than an alternative method.
Requirements
Windows NT/2000/XP: Included in Windows NT 3.1 and later.
Windows 95/98/Me: Included in Windows 95 and later.
Header: Declared in Vfw.h.
Library: Use Vfw32.lib.
Is there a program that requires this that we can test against?
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=916>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From JeffMay(a)earthlink.net 2002-07-24 19:59 -------
Additional clue: I just noticed that when Wine "locks up" after pressing TAB to
leave the NUM column, and after I press CTRL-C to exit, Wine reports:
/usr/bin/wine: [: too many arguments
Wine failed with return code
/usr/bin/wine: [: too many arguments
/usr/bin/wine: [: -ge: unary operator expected
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=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=885
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-24 18:42 -------
I've had several days to think about this one and I have come up with the
following conclusions
1. The problem is not with the source and destination drawables being the same.
This is pretty rock stable stuff that has been tested in X11 for years. Also
while Debuging Bug 792 I noticed that when scrolling in the file dialog that
the source and destination were the same with no screen corruption. (I had put a
fixme in the code to detect this.) So it isn't this.
2. Timing is a factor because slowing down the execution of same drawables
clears up the problem somewhat.
3. If I move forward and then turn. at the begining of the trace there is this
fixme.
> fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy
This does not occure if I am turning around in circles. What brought my
attention to this is that another program that has screen corruption (Bug 911)
displays this fixme a lot.
All that means is that I understand the problem a little better and have a hint
of where to look next I suppose. My burning question at this point is what does
the somewhat cryptic fixme really mean?
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=885>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=916
Summary: DrawDibProfileDisplay is not implemented
Product: Wine
Version: CVS
Platform: PC
URL: http://msdn.microsoft.com/library/default.asp?url=/libra
ry/en-us/multimed/mmfunc_2qwp.asp
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: samuel(a)sieb.net
The URL is the msdn info for the function.
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=916>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=889
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-24 10:30 -------
Created an attachment (id=240)
Screen shot showing corruption of Winzip startup screen.
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=889>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=889
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-24 10:26 -------
I applied your patch to my system and tested it with several programs and the
results are not very good. the startup screen of winzip is totally corrupted by
this 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=889>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=913
Summary: Textfields with dropdowns doesn't work
Product: Wine
Version: 20020509
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: zounds(a)atari.org
When using the direct connect client DC++
(www.sourceforge.net/projects/dcplusplus)
the textfields (with dropdowns) doesn't work as they should. Sometimes you
can't type text into it, sometimes a string like "hello" become one big single
character. It also seems like the program can't use the contents of the fields
alright.
The searchfield for example dosn't work. But if you use the search function
within the "search spy" it works fine.
I'm using wine from "testing/debian, linux"
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=913>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=866
------- Additional Comments From mcbridematt(a)hotmail.com 2002-07-24 02:13 -------
card config,
NVIDIA RIVA TNT
Generic Monitor, 800x600, 33.8MHz Horizontal, 60HZ Vertical
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=866>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=866
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-gui |wine-x11driver
Target Milestone|--- |0.9.0
Version|20010112 |20020411
------- Additional Comments From mcbridematt(a)hotmail.com 2002-07-24 01:57 -------
I ran winedebug,
and it is trying to find a file called x11drv.dll.
Looking in /opt/wine/lib/, there is a file called libX11drv.dll.so.
I attempted using this file in GraphicsDriver, but it failed.
Wine should call libX11drv.dll.so for the graphics driver, but it doesn't.
This problem appears to be new in 20020411, however, this problem didn't exist
20020228. A upgrade form 20020228 to 20020411 works, but 20020411 cleanly doesn't.
I added /opt/wine/lib to etc/ld.so.conf and ran /sbin/ldconfig. after
discovering installers had trouble adding to this config file. It didn't work
Upgrading and compling to the lastest true version of wine, I discovered a
Sockets problem which appeared to also be present in other servers.
Wine should connect to X through xlib, not through the socket file.
Now to freetype. True wine didn't care about freetype after compiling my own
freetype build and adding /usr/local/lib to ld.so.conf.
Codeweavers Wine, however didn't care.
It has worked in the past
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=866>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=889
------- Additional Comments From tuiningas_ml(a)shaw.ca 2002-07-23 21:42 -------
Created an attachment (id=239)
Proposed patch for this ug
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=889>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=906
------- Additional Comments From JeffMay(a)earthlink.net 2002-07-23 19:35 -------
Additional information: I was asked to replace the builtin shdocvw.dll with a
native version, which I did. No change in behavior. I then ran "wine -debugmsg
+dialog QW.EXE" from the Quicken program directory. Here is a copy of the
generated log:
---------------------------------SNIP------------------------------------------
Wine cannot find certain functions that it needs inside the FreeType
font library. To enable Wine to use TrueType fonts please upgrade
FreeType to at least version 2.0.5.
http://www.freetype.org
trace:dialog:DIALOG_GetCharSizeFromDC dlg base units: 8 x 16
trace:dialog:DIALOG_Init base units = 8,16
err:wave:wodOpen fragment size set failed, size is now 4096
Your Open Sound System driver did not let us configure small enough sound fragments.
This may cause delays and other problems in audio playback with certain
applications.
trace:dialog:DIALOG_ParseTemplate32 DIALOG 10, 10, 232, 132, 0
trace:dialog:DIALOG_ParseTemplate32 STYLE 0x80c800c0
trace:dialog:DIALOG_ParseTemplate32 EXSTYLE 0x00000000
trace:dialog:DIALOG_ParseTemplate32 CAPTION L"Product Registration"
trace:dialog:DIALOG_ParseTemplate32 FONT 8, L"MS Sans Serif", 0, FALSE
trace:dialog:DIALOG_GetCharSizeFromDC dlg base units: 7 x 14
trace:dialog:DIALOG_CreateIndirect units = 7,14
trace:dialog:DIALOG_CreateControls BEGIN
trace:dialog:DIALOG_GetControl32 L"QWIconDisplay" L"" 1038, 8, 8, 20, 20,
50020000, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"Static" L"" 1042, 36, 8, 188, 16,
50020000, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"Static" L"- Technical support" 65535, 36,
30, 188, 8, 50020000, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"Static" L"- Free online software updates,
including changes " 65535, 36, 40, 188, 8, 50020000, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"Static" L" required by the new 1998 tax
laws" 65535, 36, 48, 188, 8, 50020000, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"Static" L"- Online stock quotes and other
services" 65535, 36, 58, 188, 8, 50020000, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"Static" L"- and special offers made only
to registered users" 65535, 36, 68, 188, 8, 50020000, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"Static" L"" 1041, 36, 86, 188, 16,
50020000, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"QC_BUTTON" L"&Register" 32767, 32, 108,
68, 15, 50030049, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"QC_BUTTON" L"Cancel" 32766, 132, 108, 68,
15, 50010048, 00000000, 00000000
trace:dialog:DIALOG_CreateControls END
trace:dialog:EndDialog 1004e 0
trace:dialog:DIALOG_ParseTemplate32 DIALOG 0, 0, 172, 73, 0
trace:dialog:DIALOG_ParseTemplate32 STYLE 0x90c000c0
trace:dialog:DIALOG_ParseTemplate32 EXSTYLE 0x00000000
trace:dialog:DIALOG_ParseTemplate32 CAPTION L"Quicken 99 for Windows"
trace:dialog:DIALOG_ParseTemplate32 FONT 8, L"MS Sans Serif", 0, FALSE
trace:dialog:DIALOG_GetCharSizeFromDC dlg base units: 7 x 14
trace:dialog:DIALOG_CreateIndirect units = 7,14
trace:dialog:DIALOG_CreateControls BEGIN
trace:dialog:DIALOG_GetControl32 L"Static" L"" 1001, 14, 40, 144, 15,
50020008, 00000000, 00000000
trace:dialog:DIALOG_GetControl32 L"Static" L"" 1000, 14, 17, 143, 13,
50020000, 00000000, 00000000
trace:dialog:DIALOG_CreateControls END
err:wave:wodOpen fragment size set failed, size is now 4096
Your Open Sound System driver did not let us configure small enough sound fragments.
This may cause delays and other problems in audio playback with certain
applications.
Wine failed with return code
---------------------------------SNIP------------------------------------------
I had to do a CTRL-C to get the program to stop. It entered the
processor-cycle-eating loop just after I pressed TAB to exit from the Num column.
As for the Freetype warning, I indeed have Ximian freetype-2.0.1-4.1 package
installed. I downloaded the 2.1.2 sources directly from the Freetype group and
installed them (./configure ; make ; su -c "make install") but Wine doesn't seem
to be able to find the newer stuff.
If it makes any diference, here's my .wine/config file:
---------------------------------SNIP------------------------------------------
WINE REGISTRY Version 2
;; All keys relative to \\Machine\\Software\\Wine\\Wine\\Config
;;
;; MS-DOS drives configuration
;;
;; Each section has the following format:
;; [Drive X]
;; "Path"="xxx" (Unix path for drive root)
;; "Type"="xxx" (supported types are 'floppy', 'hd', 'cdrom' and 'network')
;; "Label"="xxx" (drive label, at most 11 characters)
;; "Serial"="xxx" (serial number, 8 characters hexadecimal number)
;; "Filesystem"="xxx" (supported types are 'msdos'/'dos'/'fat', 'win95'/'vfat',
'unix')
;; This is the FS Wine is supposed to emulate on a certain
;; directory structure.
;; Recommended:
;; - "win95" for ext2fs, VFAT and FAT32
;; - "msdos" for FAT16 (ugly, upgrading to VFAT driver strongly recommended)
;; DON'T use "unix" unless you intend to port programs using Winelib !
;; "Device"="/dev/xx" (only if you want to allow raw device access)
;;
[Drive A]
"Type" = "floppy"
"Path" = "/mnt/floppy"
"Label" = "/mnt/floppy"
"Device" = "/dev/fd0"
[Drive C]
"Path" = "/home/jcmay/.wine/fake_windows"
"Type" = "hd"
"Label" = "/home/jcmay/.wine/fake_windows"
"Filesystem" = "win95"
[Drive D]
"Type" = "cdrom"
"Path" = "/mnt/cdrom"
"Label" = "/mnt/cdrom"
"FileSystem" = "win95"
"Device" = "/dev/hdd"
[Drive E]
"Type" = "cdrom"
"Path" = "/mnt/cdrom1"
"Label" = "/mnt/cdrom1"
"FileSystem" = "win95"
"Device" = "/dev/scd0"
[Drive X]
"Type" = "hd"
"Path" = "/tmp"
"Label" = "Tmp Drive"
"FileSystem" = "win95"
[Drive Y]
"Type" = "network"
"Path" = "${HOME}"
"Label" = "Home"
"FileSystem" = "win95"
[Drive Z]
"Type" = "network"
"Path" = "/"
"Label" = "Root"
"FileSystem" = "win95"
[wine]
"Windows" = "C:\\Windows"
"System" = "C:\\Windows\\System"
"Temp" = "X:\\"
"Path" = "C:\\Windows;C:\\Windows\\System;X:\\;Y:\\"
"GraphicsDriver" = "x11drv"
; Wine doesn't pass directory symlinks to Windows programs by default.
; Enabling this may crash some programs that do recursive lookups of a whole
; subdir tree in case of a symlink pointing back to itself.
;"ShowDirSymlinks" = "1"
"ShellLinker" = "wineshelllink"
# <wineconf>
[DllOverrides]
"*" = "builtin, native, so"
"shdocvw" = "native"
[x11drv]
; Number of colors to allocate from the system palette
"AllocSystemColors" = "100"
; Use a private color map
"PrivateColorMap" = "N"
; Favor correctness over speed in some graphics operations
"PerfectGraphics" = "N"
; Color depth to use on multi-depth screens
;;"ScreenDepth" = "16"
; Name of X11 display to use
;;"Display" = ":0.0"
; Allow the window manager to manage created windows
"Managed" = "N"
; Use a desktop window of 640x480 for Wine
"Desktop" = "800x600"
; Use XFree86 DGA extension if present
; (make sure /dev/mem is accessible by you !)
"UseDGA" = "N"
; Use XShm extension if present
"UseXShm" = "N"
; Enable DirectX mouse grab
"DXGrab" = "N"
; Create the desktop window with a double-buffered visual
; (useful to play OpenGL games)
"DesktopDoubleBuffered" = "N"
; Code page used for captions in managed mode
; 0 means default ANSI code page (CP_ACP == 0)
"TextCP" = "0"
; Use this if you have more than one port for video on your setup
; (Wine uses for now the first 'input image' it finds).
;; "XVideoPort" = "43"
; Run in synchronous mode (useful for debugging X11 problems)
;;"Synchronous" = "Y"
[fonts]
;Read documentation/fonts before adding aliases
;See a couple of examples for russian users below
"Resolution" = "96"
"Default" = "-adobe-helvetica-"
"DefaultFixed" = "fixed"
"DefaultSerif" = "-adobe-times-"
"DefaultSansSerif" = "-adobe-helvetica-"
;; default TrueType fonts with russian koi8-r encoding
;"Default" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultFixed" = "-monotype-courier new-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultSerif" = "-monotype-times new roman-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultSansSerif" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
;; default cyrillic bitmap X fonts
;"Default" = "-cronyx-helvetica-"
;"DefaultFixed" = "fixed"
;"DefaultSerif" = "-cronyx-times-"
;"DefaultSansSerif" = "-cronyx-helvetica-"
[serialports]
"Com1" = "/dev/ttyS0"
"Com2" = "/dev/ttyS1"
[parallelports]
"Lpt1" = "/dev/lp0"
[spooler]
"LPT1:" = "|lpr"
"LPT2:" = "|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -"
"LPT3:" = "/dev/lp3"
[ports]
;"read" = "0x779,0x379,0x280-0x2a0"
; "write" = "0x779,0x379,0x280-0x2a0"
[spy]
"Exclude" = "WM_SIZE;WM_TIMER;"
[registry]
;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false.
;Defaults are read all, write to Home
; Global registries (stored in /etc)
"LoadGlobalRegistryFiles" = "Y"
; Home registries (stored in ~user/.wine/)
"LoadHomeRegistryFiles" = "Y"
; Load Windows registries from the Windows directory
"LoadWindowsRegistryFiles" = "Y"
; TRY to write all changes to home registries
"WritetoHomeRegistryFiles" = "Y"
; Registry periodic save timeout in seconds
; "PeriodicSave" = "600"
; Save only modified keys
"SaveOnlyUpdatedKeys" = "Y"
[Tweak.Layout]
;; supported styles are 'Win31'(default), 'Win95', 'Win98'
"WineLook" = "Win98"
[Console]
;"Drivers" = "tty"
;"XtermProg" = "nxterm"
;"InitialRows" = "25"
;"InitialColumns" = "80"
;"TerminalType" = "nxterm"
[Clipboard]
"ClearAllSelections" = "0"
"PersistentSelection" = "1"
; List of all directories directly contain .AFM files
[afmdirs]
"1" = "/usr/share/ghostscript/fonts"
"2" = "/usr/share/a2ps/afm"
"3" = "/usr/share/enscript"
"4" = "/usr/X11R6/lib/X11/fonts/Type1"
[WinMM]
"Drivers" = "wineoss.drv"
"WaveMapper" = "msacm.drv"
"MidiMapper" = "midimap.drv"
# </wineconf>
#########################################
# Application dependent sections follow #
#########################################
[AppDefaults\\_INS5576._MP\\x11drv]
; Lotus Notes R5 installer
; I'm quite not sure this will run on some other machine than mine, but it
; can't hurt
"Managed" = "N"
"Desktop" = "N"
[AppDefaults\\nlnotes.exe\\x11drv]
"Desktop" = "800x600"
[AppDefaults\\notes.exe\\DllOverrides]
"msvcrt" = "native"
"msvcrt40" = "native"
"crtdll" = "native"
"imagehlp" = "native"
"rnaph" = "native"
[AppDefaults\\nlnotes.exe\\DllOverrides]
"msvcrt" = "native"
"msvcrt40" = "native"
"crtdll" = "native"
"imagehlp" = "native"
"rnaph" = "native"
[AppDefaults\\nhldaemn.exe\\DllOverrides]
"msvcrt" = "native"
"msvcrt40" = "native"
"crtdll" = "native"
"imagehlp" = "native"
"rnaph" = "native"
---------------------------------SNIP------------------------------------------
Thanks to everyone for their consideration and help.
Jeff
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=906>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=156
------- Additional Comments From dclark(a)akamail.com 2002-07-23 18:16 -------
Note that this was with Wine 20001222! Some really old bugs. I do recall two
different problems with Xilinx map back around that time. One turned out to be a
bug in wine, and the other was a Xilinx bug that was fixed with the next Xilinx
service pack.
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=156>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=158
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-23 15:02 -------
I talked to the reporter of this bug and he verified to me that this is no
longer a 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=158>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=156
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-23 14:51 -------
I talked to Uwe Bonnes about this and he said. "The map programm coming with
webpack4.2 seems to work fine on my tree."
So based on his comments I am verifying 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=156>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=911
Summary: Screen Corruption in Nord Modular Editor
Product: Wine
Version: CVS
Platform: PC
URL: http://www.clavia.se/nordmodular/software.htm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tony_lambregts(a)telusplanet.net
CC: steve(a)totl.net
This program has screen corruption the same as riven (I think)
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=911>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=236
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-07-23 09:21 -------
Marking This bug as Verified
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=236>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.