http://bugs.winehq.org/show_bug.cgi?id=19299
Summary: fixme:quartz:MediaControl_RenderFile
(0x7c20978/0x7c2097c)->(L"D:\\assimil\\d_fr\\sounds\\e
001_01.mp3" (0x7c47674)): stub !!!
Product: Wine
Version: 1.1.25
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: quickhelp(a)gmail.com
CC: quickhelp(a)gmail.com
Created an attachment (id=22346)
--> (http://bugs.winehq.org/attachment.cgi?id=22346)
output of the WINEPREFIX=/bla wine Assimil.exe command
- I copied all files from the cd into /blub.
- I created a clean wine v1.1.25 environment: WINEPREFIX=/bla winecfg
windows XP
sound turned on with default (ALSA) settings that work for me in other
programs
d: = /blub as type CD-ROM
- I installed the application (ASSIMIL french CD version 3.10): WINEPREFIX=/bla
wine d:\setup.exe
This seems to have worked.
- cd /bla/drive_c/Programme/Assimil/d_fr
- WINEPREFIX=/bla wine Assimil.exe
The program starts.
But when it comes to play sentences that are stored in mp3 files I hear nothing
and see the above error message.
Unfortunately with google I didn't found a lot about it.
I tried several reinstalls with "winetricks vb6run d3dx9 ie6 vc6run" but it
does not work.
Any hint will be highly appreciated!
Please let me know if you need anything else!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19776
Summary: Diablo 1.09 Sound error
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: midian(a)netikka.fi
Created an attachment (id=23170)
--> (http://bugs.winehq.org/attachment.cgi?id=23170)
errormsg
Diablo ingame suddenly crashes while ur playing, happens early or late in the
game.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15118
Summary: PokerTracker HUD dysfunctional (UpdateLayeredWindow
needs implementing?)
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wtipton(a)hmc.edu
Created an attachment (id=15822)
--> (http://bugs.winehq.org/attachment.cgi?id=15822)
normal output
PokerTracker (www.pokertracker.com -- trial version available) creates a bunch
of small windows which overlay poker clients' windows and give various
statistics about opponents' play.
The most recent versions of PokerTracker include updates to this functionality
which, unfortunately, break the application under wine. Instead of the small,
information-bearing dialog appears a very large blank gray one with which the
user can not interact.
The most relevant-seeming line in the normal output is:
fixme:win:UpdateLayeredWindow
(0x10a40,0x354,0x33f300,0x33f2d4,0x380,0x33f2bc,0x007b7b7b,0x33f334,2): stub!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18057
Summary: mishandled has_space==1 && opt_s==0 in
programs/wcmdmain.c for built in commands
Product: Wine
Version: 1.1.19
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: swelef(a)post.sk
When using ActivePerl to execute Perl statements such as
my $p=`set PATH`;
ActivePerl will pass it as a quoted argument to CreateProcessW:
CreateProcessW app L"cmd.exe" cmdline L"cmd.exe /x/d/c \"set PATH\""
wcmdmain.c:wmain will get the following arguments:
0 => L"cmd.exe"
1 => L"/x/d/c"
2 => L"set PATH"
and determine that has_space==1 && opt_s==0 thus creating
cmd = L"\"set PATH\""
This command is later passed to WCMD_execute where there's no match with
the "inbuilt[]" commands (because of the leading double-quote) and it's in
turn passed to WCMD_run_program. That function tries to do its best but in
the
if ((opt_c || opt_k) && !opt_s && !status
&& GetLastError()==ERROR_FILE_NOT_FOUND && command[0]=='\"')
branch (wcmdmain.c, lines #1158-1162 in wine 1.1.19) it strips the quotes
and calls _itself_ thus missing the check for "inbuilt[]" commands. What's
required here is to call back to WCMD_execute but unfortunately some of
the WCMD_execute's arguments are not available at this point.
PS: I'm trying to use S60_5th_Edition_SDK_v1.0 on debian lenny and the
first point of failure was the Perl statement
open PIPE, "set EPOCROOT |";
I have made experiments with wine 1.0.1 and 1.1.19 and with ActivePerl
5.10.0.1004 and StrawberryPerl 5.10.0.4 with the same results. However,
Wine 1.1.19 with ActivePerl and `set PATH` is the only test case I have
investigated in depth.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21131
Summary: cmd /c echo "&" returns 'Echo is ON', not '"&"'
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
echo /c ^&
should give
&
as well, but that's bug 18346...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21198
Summary: Heroes of Might and Magic V hangs during start-up
Product: Wine
Version: 1.1.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: benoit.pierre(a)gmail.com
It hangs after displaying the splash screen, last trace is:
err:ntdll:RtlpWaitForCriticalSection section 0xc37d34 "?" wait timed out in
thread 0020, blocked by 0021, retrying (60 sec)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19583
Summary: The Football Superstars updater endlessly loops
attempting to update
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://download.footballsuperstars.com/FSDownloader.ex
e
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=22823)
--> (http://bugs.winehq.org/attachment.cgi?id=22823)
FSPatchR.exe standard error
With wine-1.1.26-316-g6deaa09, after installing Football Superstars (a
multi-gigabyte download), when the autoupdate utility is run post-install, the
autoupdate utility fetches relevant updates, but continuously restarts as if
the updates had never been applied. Standard error and patch updater logs are
attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21132
Summary: 'cmd echo on' sometimes fails
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
$ rm a
$ wine cmd
Z:\home\austin\>echo on > a
Z:\home\austin\>type a
on
but running:
austin@laptop:~$ wine cmd /c echo on > a
austin@laptop:~$ cat a
shows an empty file.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10763
Summary: Window movement in virtual desktop mode should match
real Windows
Product: Wine
Version: 0.9.50.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Hi,
This is a suggestion about the way window borders are drawn when windows are
dragged or resized, when in virtual desktop mode.
Windows (2000) operation seems to be like this:
- Window movement:
- When the pointer is stationary over the window title bar, pressing and
holding the left button causes the highlighted border frame to be drawn
after approximately 1 second. (Wine only draws the border frame once the
pointer is moved.)
- For non-resizeable windows, the border is highlighted by a 1-pixel thick
rectangle with dotted lines (Wine does this currently). For resizeable
windows, the border is highlighted by a 4-pixel thick rectangle with
crosshatch/checkerboard lines. (Wine uses XOR/complement highlighting in
this case.)
- Window resizing:
- As with movement of resizeable windows, the Windows border frame drawing
differs from Wine's complement type highlighting.
My suggestion is that by default Wine's behaviour should match the Windows
behaviour. However some users may prefer the complement type highlighting. (In
some cases parts of the Windows border frame are invisible, depending on the
background colour.) Maybe have an option or registry setting to tell Wine to
always complement (including when moving non-resizeable windows)?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17730
Summary: Painkiller level E4M3 "Babel" hangs on load
Product: Wine
Version: 1.1.17
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aoanla(a)yahoo.com
For unknown reasons, when attempting to start the level "Babel" in Painkiller
(Steam edition) in Wine, the game hangs roughly 50% of the way into loading the
level. The program can be killed by switching to a virtual console and killing
the process - this does not affect the Steam process, and results in an
apparently clean exit.
There is no debug output from Wine at any point around the time of the hang.
Bug occurs with NVIDIA drivers 177.80 and 180.37
Bug occurs with both fbo and backbuffer offscreen rendering.
Bug occurs with Wine 1.1.17. No other wine version tested yet
All previous levels load perfectly in 1.1.17.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.