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
e64485d5
Commit
e64485d5
authored
May 13, 2007
by
Emmanuel Maillard
Committed by
Alexandre Julliard
May 14, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio: Initial mixer support on Mac OS X.
Find all lines and initialize controls.
parent
0eeb5727
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
4 deletions
+9
-4
Makefile.in
dlls/winecoreaudio.drv/Makefile.in
+2
-1
coreaudio.c
dlls/winecoreaudio.drv/coreaudio.c
+2
-2
coreaudio.h
dlls/winecoreaudio.drv/coreaudio.h
+4
-1
mixer.c
dlls/winecoreaudio.drv/mixer.c
+0
-0
winecoreaudio.drv.spec
dlls/winecoreaudio.drv/winecoreaudio.drv.spec
+1
-0
No files found.
dlls/winecoreaudio.drv/Makefile.in
View file @
e64485d5
...
...
@@ -11,7 +11,8 @@ C_SRCS = \
audiounit.c
\
coreaudio.c
\
coremidi.c
\
midi.c
midi.c
\
mixer.c
@MAKE_DLL_RULES@
...
...
dlls/winecoreaudio.drv/coreaudio.c
View file @
e64485d5
...
...
@@ -44,7 +44,7 @@ static LRESULT CoreAudio_drvLoad(void)
TRACE
(
"()
\n
"
);
CoreAudio_WaveInit
();
CoreAudio_MIDIInit
();
CoreAudio_MixerInit
();
return
1
;
}
...
...
@@ -56,7 +56,7 @@ static LRESULT CoreAudio_drvFree(void)
TRACE
(
"()
\n
"
);
CoreAudio_WaveRelease
();
CoreAudio_MIDIRelease
();
CoreAudio_MixerRelease
();
return
1
;
}
...
...
dlls/winecoreaudio.drv/coreaudio.h
View file @
e64485d5
/* Definition for CoreAudio drivers : wine multimedia system
*
* Copyright 2005 Emmanuel Maillard
* Copyright 2005
-2007
Emmanuel Maillard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
...
...
@@ -26,4 +26,7 @@ extern void CoreAudio_WaveRelease(void);
extern
LONG
CoreAudio_MIDIInit
(
void
);
extern
void
CoreAudio_MIDIRelease
(
void
);
extern
LONG
CoreAudio_MixerInit
(
void
);
extern
void
CoreAudio_MixerRelease
(
void
);
#endif
/* __WINE_COREAUDIO_H */
dlls/winecoreaudio.drv/mixer.c
0 → 100644
View file @
e64485d5
This diff is collapsed.
Click to expand it.
dlls/winecoreaudio.drv/winecoreaudio.drv.spec
View file @
e64485d5
...
...
@@ -3,3 +3,4 @@
@ stdcall -private wodMessage(long long long long long) CoreAudio_wodMessage
@ stdcall -private midMessage(long long long long long) CoreAudio_midMessage
@ stdcall -private modMessage(long long long long long) CoreAudio_modMessage
@ stdcall -private mxdMessage(long long long long long) CoreAudio_mxdMessage
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