Commit e64485d5 authored by Emmanuel Maillard's avatar Emmanuel Maillard Committed by Alexandre Julliard

winecoreaudio: Initial mixer support on Mac OS X.

Find all lines and initialize controls.
parent 0eeb5727
......@@ -11,7 +11,8 @@ C_SRCS = \
audiounit.c \
coreaudio.c \
coremidi.c \
midi.c
midi.c \
mixer.c
@MAKE_DLL_RULES@
......
......@@ -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;
}
......
/* 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 */
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment