Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0a81f12c
Commit
0a81f12c
authored
Jan 11, 2011
by
Jörg Höhle
Committed by
Alexandre Julliard
Jan 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: PlaySound ignores SND_NOWAIT.
parent
1e7c80ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
playsound.c
dlls/winmm/playsound.c
+2
-4
No files found.
dlls/winmm/playsound.c
View file @
0a81f12c
...
...
@@ -472,10 +472,8 @@ static BOOL MULTIMEDIA_PlaySound(const void* pszSound, HMODULE hmod, DWORD fdwSo
TRACE
(
"pszSound='%p' hmod=%p fdwSound=%08X
\n
"
,
pszSound
,
hmod
,
fdwSound
);
/* FIXME? I see no difference between SND_NOWAIT and SND_NOSTOP !
* there could be one if several sounds can be played at once...
*/
if
((
fdwSound
&
(
SND_NOWAIT
|
SND_NOSTOP
))
&&
PlaySoundList
!=
NULL
)
/* SND_NOWAIT is ignored in w95/2k/xp. */
if
((
fdwSound
&
SND_NOSTOP
)
&&
PlaySoundList
!=
NULL
)
return
FALSE
;
/* alloc internal structure, if we need to play something */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment