winealsa.drv: Add mmdevapi driver.
Maarten Lankhorst also contributed to this driver.
This commit is contained in:
parent
5014099928
commit
86e90c92af
|
@ -8,6 +8,7 @@ C_SRCS = \
|
|||
dsoutput.c \
|
||||
midi.c \
|
||||
mixer.c \
|
||||
mmdevdrv.c \
|
||||
wavein.c \
|
||||
waveinit.c \
|
||||
waveout.c
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -52,11 +52,6 @@
|
|||
#include "winreg.h"
|
||||
#include "mmddk.h"
|
||||
|
||||
/* ksmedia.h defines KSDATAFORMAT_SUBTYPE_PCM and KSDATAFORMAT_SUBTYPE_IEEE_FLOAT
|
||||
* However either all files that use it will define it, or no files will
|
||||
* The only way to solve this is by adding initguid.h here, and include the guid that way
|
||||
*/
|
||||
#include "initguid.h"
|
||||
#include "alsa.h"
|
||||
|
||||
#include "wine/library.h"
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
# WinMM driver functions
|
||||
@ stdcall -private DriverProc(long long long long long) ALSA_DriverProc
|
||||
@ stdcall -private midMessage(long long long long long) ALSA_midMessage
|
||||
@ stdcall -private modMessage(long long long long long) ALSA_modMessage
|
||||
@ stdcall -private mxdMessage(long long long long long) ALSA_mxdMessage
|
||||
@ stdcall -private widMessage(long long long long long) ALSA_widMessage
|
||||
@ stdcall -private wodMessage(long long long long long) ALSA_wodMessage
|
||||
|
||||
# MMDevAPI driver functions
|
||||
@ stdcall -private GetEndpointIDs(long ptr ptr ptr ptr) AUDDRV_GetEndpointIDs
|
||||
@ stdcall -private GetAudioEndpoint(ptr ptr long ptr) AUDDRV_GetAudioEndpoint
|
||||
|
|
Loading…
Reference in New Issue