Added dlls/winmm and dlls/winmm/wineoss directories.
This commit is contained in:
parent
dc8d856c7a
commit
6fea55f1e7
|
@ -62,6 +62,8 @@ LIBSUBDIRS = \
|
|||
dlls/win87em \
|
||||
dlls/winaspi \
|
||||
dlls/windebug \
|
||||
dlls/winmm \
|
||||
dlls/winmm/wineoss \
|
||||
dlls/wing \
|
||||
dlls/winspool \
|
||||
dlls/wnaspi32 \
|
||||
|
@ -159,6 +161,7 @@ LIBOBJS = \
|
|||
dlls/win87em/win87em.o \
|
||||
dlls/winaspi/winaspi.o \
|
||||
dlls/windebug/windebug.o \
|
||||
dlls/winmm/wineoss/wineoss.o \
|
||||
dlls/wing/wing.o \
|
||||
dlls/winspool/winspool.o \
|
||||
dlls/wnaspi32/wnaspi32.o \
|
||||
|
|
|
@ -5650,6 +5650,8 @@ dlls/win32s/Makefile
|
|||
dlls/win87em/Makefile
|
||||
dlls/winaspi/Makefile
|
||||
dlls/windebug/Makefile
|
||||
dlls/winmm/Makefile
|
||||
dlls/winmm/wineoss/Makefile
|
||||
dlls/wing/Makefile
|
||||
dlls/winspool/Makefile
|
||||
dlls/wnaspi32/Makefile
|
||||
|
@ -5843,6 +5845,8 @@ dlls/win32s/Makefile
|
|||
dlls/win87em/Makefile
|
||||
dlls/winaspi/Makefile
|
||||
dlls/windebug/Makefile
|
||||
dlls/winmm/Makefile
|
||||
dlls/winmm/wineoss/Makefile
|
||||
dlls/wing/Makefile
|
||||
dlls/winspool/Makefile
|
||||
dlls/wnaspi32/Makefile
|
||||
|
|
|
@ -857,6 +857,8 @@ dlls/win32s/Makefile
|
|||
dlls/win87em/Makefile
|
||||
dlls/winaspi/Makefile
|
||||
dlls/windebug/Makefile
|
||||
dlls/winmm/Makefile
|
||||
dlls/winmm/wineoss/Makefile
|
||||
dlls/wing/Makefile
|
||||
dlls/winspool/Makefile
|
||||
dlls/wnaspi32/Makefile
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Makefile
|
|
@ -0,0 +1,13 @@
|
|||
DEFS = @DLLFLAGS@ -D__WINE__
|
||||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
MODULE = winmm
|
||||
|
||||
all: $(MODULE).o
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
### Dependencies:
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
Makefile
|
||||
wineoss.spec.c
|
|
@ -0,0 +1,20 @@
|
|||
DEFS = @DLLFLAGS@ -D__WINE__
|
||||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
MODULE = wineoss
|
||||
|
||||
SPEC_SRCS = \
|
||||
wineoss.spec
|
||||
|
||||
C_SRCS =
|
||||
|
||||
all: $(MODULE).o
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
call32.s: $(BUILD)
|
||||
$(BUILD) @BUILDFLAGS@ -o $@ -call32
|
||||
|
||||
### Dependencies:
|
|
@ -0,0 +1,10 @@
|
|||
name wineoss
|
||||
type win32
|
||||
|
||||
1 stdcall DriverProc(long long long long long) OSS_DriverProc
|
||||
2 stdcall auxMessage(long long long long long) OSS_auxMessage
|
||||
3 stdcall mixMessage(long long long long long) OSS_mixMessage
|
||||
4 stdcall midMessage(long long long long long) OSS_midMessage
|
||||
5 stdcall modMessage(long long long long long) OSS_modMessage
|
||||
6 stdcall widMessage(long long long long long) OSS_widMessage
|
||||
7 stdcall wodMessage(long long long long long) OSS_wodMessage
|
Loading…
Reference in New Issue