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
be158e48
Commit
be158e48
authored
Jul 11, 2011
by
Andrew Eikum
Committed by
Alexandre Julliard
Jul 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Implement waveOut* on top of MMDevAPI.
parent
901af51e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
2 deletions
+4
-2
Makefile.in
dlls/winmm/Makefile.in
+1
-1
waveform.c
dlls/winmm/waveform.c
+0
-0
winemm.h
dlls/winmm/winemm.h
+2
-0
winmm.c
dlls/winmm/winmm.c
+1
-1
No files found.
dlls/winmm/Makefile.in
View file @
be158e48
EXTRADEFS
=
-D_WINMM_
MODULE
=
winmm.dll
IMPORTLIB
=
winmm
IMPORTS
=
u
ser32 advapi
32
IMPORTS
=
u
uid user32 advapi32 ole32 msacm
32
C_SRCS
=
\
driver.c
\
...
...
dlls/winmm/waveform.c
View file @
be158e48
This diff is collapsed.
Click to expand it.
dlls/winmm/winemm.h
View file @
be158e48
...
...
@@ -152,6 +152,8 @@ void TIME_MMTimeStop(void) DECLSPEC_HIDDEN;
MMRESULT
WINMM_CheckCallback
(
DWORD_PTR
dwCallback
,
DWORD
fdwOpen
,
BOOL
mixer
);
BOOL
WINMM_InitWaveform
(
void
);
/* Global variables */
extern
CRITICAL_SECTION
WINMM_cs
DECLSPEC_HIDDEN
;
extern
HINSTANCE
hWinMM32Instance
DECLSPEC_HIDDEN
;
...
...
dlls/winmm/winmm.c
View file @
be158e48
...
...
@@ -79,7 +79,7 @@ static BOOL WINMM_CreateIData(HINSTANCE hInstDLL)
{
hWinMM32Instance
=
hInstDLL
;
psLastEvent
=
CreateEventW
(
NULL
,
TRUE
,
FALSE
,
NULL
);
return
TRUE
;
return
WINMM_InitWaveform
()
;
}
/**************************************************************************
...
...
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