Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b93f1114
Commit
b93f1114
authored
May 12, 2002
by
Eric Pouech
Committed by
Alexandre Julliard
May 12, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better behavior of PlaySound (error handling, synchronization).
Removed some unnecessary tests about windows handles.
parent
67371bcc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
mmsystem.c
dlls/winmm/mmsystem.c
+0
-0
winemm.h
dlls/winmm/winemm.h
+14
-0
No files found.
dlls/winmm/mmsystem.c
View file @
b93f1114
This diff is collapsed.
Click to expand it.
dlls/winmm/winemm.h
View file @
b93f1114
...
...
@@ -155,6 +155,18 @@ typedef struct tagWINE_MMIO {
DWORD
dwFileSize
;
}
WINE_MMIO
,
*
LPWINE_MMIO
;
typedef
struct
tagWINE_PLAYSOUND
{
HANDLE
hThread
;
HANDLE
hReadyEvent
;
BOOL
bStop
;
LPCWSTR
pszSound
;
HMODULE
hMod
;
DWORD
fdwSound
;
int
bLoop
;
int
searchMode
;
/* 1 - sndPlaySound search order
2 - PlaySound order */
}
WINE_PLAYSOUND
,
*
LPWINE_PLAYSOUND
;
typedef
struct
tagWINE_MM_IDATA
{
/* iData reference */
DWORD
dwThisProcess
;
...
...
@@ -178,6 +190,8 @@ typedef struct tagWINE_MM_IDATA {
/* LPWINE_MIXER lpMixer; */
/* mmio part */
LPWINE_MMIO
lpMMIO
;
/* playsound and sndPlaySound */
LPWINE_PLAYSOUND
lpPlaySound
;
}
WINE_MM_IDATA
,
*
LPWINE_MM_IDATA
;
/* function prototypes */
...
...
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