http://bugs.winehq.org/show_bug.cgi?id=3042
------- Additional Comments From alex(a)thehandofagony.com 2006-07-01 07:52 -------
I have experienced similar problems with several games; what fixed it for me was
to use the OSS driver instead of the ALSA driver.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3691
jeremielapuree(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3944
b.buschinski(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From b.buschinski(a)web.de 2006-07-01 07:07 -------
I dont know why but but doesnt appear
in todays cvs 20060107
fixed ;-)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4253
Summary: Bad behaviour with hook functions in file dialog
Product: Wine
Version: 20050725
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lurch(a)gmx.li
If an hook function has been installed for the "OK" button, wine shows the
following behaviour:
1. It sends a WM_NOTIFY message with CDN_FILEOK
2. The hook function gets executed
3. The hook function sets either a zero or nonzero DWL_MSGRESULT via
SetWindowLong
4. The hook function returns with either an zero or nonzero value
Unfortunately, wines behaviour with respect to the two return values differs
from Windows behaviour. Wine ignores the normal return value of the hook
procedure and only checks for the DWL_MSGRESULT.
I have found at least one application (Ragtime Solo,
http://appdb.winehq.org/appview.php?versionId=2637 ) which shows wrong
behaviour cause of that. According to the application developers, they use a
nonzero DWL_MSGRESULT to hinder Windows from sending an FILEOKSTRING message
("These WM_NOTIFY messages supersede the FILEOKSTRING, LBSELCHSTRING,
SHAREVISTRING, and HELPMSGSTRING registered messages used by previous versions
of the Open and Save As dialog boxes. However, the hook procedure also
receives the superseded message after the WM_NOTIFY message if the WM_NOTIFY
processing does not use SetWindowLong to set a nonzero DWL_MSGRESULT
value." [1]).
In [2], MSDN states for the hook procedure:
"Return Value
If the hook procedure returns zero, the dialog box accepts the specified
file name and closes.
To reject the specified file name and force the dialog box to remain open,
return a nonzero value from the hook procedure and call the SetWindowLong
function to set a nonzero DWL_MSGRESULT value."
So IMHO wine should take the DWL_MSGRESULT in account _only_, if the return
value is nonzero.
[1]
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winu…
[2]
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winu…
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1660
------- Additional Comments From alex(a)thehandofagony.com 2006-07-01 06:29 -------
I forgot to mention that I used Wine 0.9.5 on Gentoo Linux.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1660
------- Additional Comments From alex(a)thehandofagony.com 2006-07-01 06:28 -------
I tried the demo. It installs fine, but when I start the game, the only thing
that happens is that a black screen appears and the resolution is changed, then
it crashes and returns me to the desktop with an annoying 640x480 resolution.
The full game, however, works pretty well.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4249
------- Additional Comments From wine(a)smallblackflowers.co.uk 2006-07-01 04:15 -------
Is there any particular word/code I can search the log for?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4250
------- Additional Comments From wijn(a)wanadoo.nl 2006-07-01 01:46 -------
Simply reverting the change would generate test failures. Can you try this patch?
--- wine/dlls/user/menu.c 2006-01-04 19:02:33.000000000 +0100
+++ mywine/dlls/user/menu.c 2006-01-07 08:42:04.000000000 +0100
@@ -3295,7 +3295,7 @@ INT WINAPI GetMenuStringA(
SetLastError( ERROR_MENU_ITEM_NOT_FOUND);
return 0;
}
- if (!str || !nMaxSiz) return strlenW(item->text);
+ if (!str || !nMaxSiz) return item->text ? strlenW(item->text) : 0;
if (!WideCharToMultiByte( CP_ACP, 0, item->text, -1, str, nMaxSiz, NULL,
NULL ))
str[nMaxSiz-1] = 0;
TRACE("returning '%s'\n", str );
Rein.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2037
------- Additional Comments From nospam(a)thenerdshow.com 2006-07-01 00:34 -------
This is not a bug. It's a botched IE install. Don't copy from windows. Use
the installer, which should work with newer wine. PCAnywhere 11.0 works fine
for me on Fedora 4_64, wine .9.5
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4249
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-01 21:49 -------
Well you need to go much ferther back in relay log to see the relevant information.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4194
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |mike(a)codeweavers.com
URL| |http://www.solidworks.com/do
| |wnloads/API/Downloads%5C0000
| |0%5C0300s%5C0348%5Capi_sdk.z
| |ip
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4251
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |mike(a)codeweavers.com
------- Additional Comments From mike(a)codeweavers.com 2006-06-01 21:02 -------
Please let me know which version of Wine you're using, and where I can download
"e-Sword 6.5" or a demo of it from.
thanks,
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4250
------- Additional Comments From mike(a)codeweavers.com 2006-06-01 20:49 -------
So you know the problem, and you know the solution. How about submitting a
patch to wine-patches(a)winehq.org? You'll even get your name in the ChangeLog.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4251
Summary: MSI ACTION_InstallFiles is not copying files in
subfolders.
Product: Wine
Version: 0.9.5.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pquiring(a)hotmail.com
This error msg occurs for every file MSI tries to install:
err:msi:ACTION_InstallFiles Unable to copy file (L"E:\\folder\\DAO360.DLL" ->
L"c:\\Program Files\\Common Files\\Microsoft Shared\\DAO\\DAO360.DLL") (error 2)
In the example above the DAO360.DLL file is in "E:\folder\Common\Microsoft
Shared\DAO\". MSI is dropping the subfolder component of the install file
request somewhere.
I'm trying to intall "e-Sword 6.5" and I cannot install it when the cdrom image
is mounted in a root folder (keeps asking for disk1). So I mount it in a
subfolder and it seems to work, except the files are not copied.
Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4250
Summary: Regression Switcher Cad Unhandled page fault
Product: Wine
Version: CVS
Platform: PC
URL: http://ltspice.linear.com/software/swcadiii.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pgr(a)arcelectronicsinc.com
http://source.winehq.org/git/?p=wine.git;a=commit;h=b34868dffa0df144ea9d6e1…
This patch removed the check in both the GetMenuStringA/W routines of if
(!IS_STRING_ITEM(item->fType)) return 0;
Adding it back to the current CVS as of 1/6/06 20:00 EST fixed that problem.
Program is downloadable and this fault was mentioned in bug 3037.
To reproduce. Open new schematic from the file menu.
trace:menu:GetMenuStringA menu=0x50 item=0000 ptr=(nil) len=0 flags=0400
wine: Unhandled page fault on read access to 0x00000000 at address 0x7b81e5e6
(thread 0009), starting debugger...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4081
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |martin-fuchs(a)gmx.net
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
OS/Version|other |Linux
Platform|Other |PC
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-01 18:13 -------
Ok looks like ppl found the patch that broke Photoshop:
http://source.winehq.org/git/?p=wine.git;a=commit;h=0b17529332b0ef5ee57873a…
Adding author of this patch to cc
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4249
Summary: Hattrick Assistant Manager/Astrum Installer Failure
Product: Wine
Version: 20050725
Platform: PC-x86-64
URL: http://lokesoftware.dk/ham
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)smallblackflowers.co.uk
Running the Installer for HAM produces popup windows saying "Out of memory",
which have the title "Astrum Installer".
Running on Ubuntu 5.10 (Breezy), a Pentium 4 2GHz with 256MB RAM. THe program
uses nowhere near this much memory under windows
I found a page that suggested logging the +msgbox channel, and a search of the
log has the output at the bottom of this message as the only reference to
'msgbox'. The command I used was:
WINEDEBUG=+msgbox,+relay wine c:\\Program\ Files\\HAMSetup.exe 2> /home/gj/
wineerrors.txt
and the logfile (when I killed the process) was around 66mb so at a guess it's
going into a loop- if there's something I can do that produces 'better'
debugging I'll be more than happy to help, this is all new to me.
I know it's not at all a popular program, but the installer is (it would seem)
used for picasa, (http://www.winehq.org/hypermail/wine-devel/2004/05/0364.html
seemed to be unresolved).
The relevant(maybe..) output:
0009:Call kernel32.WideCharToMultiByte(00000000,00000000,7fb40000
L"WINEDEBUG=+msgbox,+relay",00000626,00000000,00000000,00000000,00000000)
ret=004242a4
0009:Call kernel32.WideCharToMultiByte(00000000,00000000,7fb40000
L"WINEDEBUG=+msgbox,+relay",00000626,7e2143b0,00000626,00000000,00000000)
ret=004242c6
trace:msgbox:MSGBOX_OnInit L"Out of memory"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2875
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |ABANDONED
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-01 18:05 -------
Long time no info...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2691
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |ABANDONED
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-01 18:04 -------
Long time no info...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2439
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-01 17:56 -------
And 4d36e97d-e325-11ce-bfc1-08002be10318 is "System devices" hardware class -
which we won't support in the near future if ever.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4058
------- Additional Comments From tkho(a)ucla.edu 2006-06-01 17:48 -------
Verified that the hanging goes away when native riched20.dll is used via winecfg.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2618
------- Additional Comments From pedro.lixo(a)netcabo.pt 2006-06-01 16:00 -------
This is no regression the errors unfortunaly already occured in past versions.
This is more like a confirmation status.
No problems in other aplications using dsound, so your patches in my system
are not breaking anything yet. :D
The game was already half broke.... :X
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.