mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
7bced2878a
Also introduce async helpers. The buffers cannot be freed directly in wave_out_proc, because calling waveOut related functions in the callback could cause a deadlock.
20 lines
261 B
Makefile
20 lines
261 B
Makefile
MODULE = sapi.dll
|
|
IMPORTS = uuid ole32 user32 advapi32
|
|
DELAYIMPORTS = winmm
|
|
|
|
C_SRCS = \
|
|
async.c \
|
|
automation.c \
|
|
main.c \
|
|
mmaudio.c \
|
|
resource.c \
|
|
stream.c \
|
|
token.c \
|
|
tts.c
|
|
|
|
IDL_SRCS = \
|
|
sapi_classes.idl \
|
|
sapi_typelib.idl
|
|
|
|
RC_SRCS = \
|
|
sapi.rc
|