http://bugs.winehq.com/show_bug.cgi?id=936
------- Additional Comments From roz(a)one.net 2002-08-03 11:15 -------
For some reason, there are no attachments listed on my screen (not even the
screenshots I uploaded earlier).
Also, I am using an RPM, so I cannot apply the patch. Can someone else try it
and confirm that it works?
BTW, yes, I am using Wine (20020710), not WineX.
DO NOT REPLY 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 lionel.ulmer(a)free.fr 2002-08-03 07:01 -------
Created an attachment (id=248)
Patch to fix the problem
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=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 lionel.ulmer(a)free.fr 2002-08-03 07:00 -------
Could you try with the patch I just attached to this patch (and also just sent
to wine-patches) ?
DO NOT REPLY 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=90
This bug depends on bug 494, 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 495, 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=941
------- Additional Comments From lionel.ulmer(a)free.fr 2002-08-03 03:01 -------
As I have Monkey Island 3, I will try to take a look at 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=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=941
------- Additional Comments From pigeon(a)pigeond.net 2002-08-02 20:07 -------
And yes, I tried both "DXGrab" "Y" and "N".
DO NOT REPLY 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=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.