mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
22b861c1be
- Implemented new DirectPlay4 and DirectPlayLobby3 interfaces. - Implemented a class factory for dplay and dplobby. COM interfaces now work for dp and dpl. - Added a few more entries to dplayx.spec files. How do you find the ordinals? I just guessed :( - Seperated DirectPlay and DirectPlayLobby implementation into separate files. - Included some missing header file definitions. - Implemented the dplay dll in terms of the dplayx dll. I haven't tested it so it may not work... - A few bug fixes and a little new implementatioe.n - Updated document with a more detailed implementation plan.
41 lines
531 B
Makefile
41 lines
531 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = multimedia
|
|
WRCEXTRA = -s -pwinmm
|
|
|
|
C_SRCS = \
|
|
audio.c \
|
|
dsound.c \
|
|
joystick.c \
|
|
lolvldrv.c \
|
|
mci.c \
|
|
mcianim.c \
|
|
mciavi.c \
|
|
mcicda.c \
|
|
mcimidi.c \
|
|
mciwave.c \
|
|
midi.c \
|
|
midipatch.c \
|
|
mixer.c \
|
|
mmaux.c \
|
|
mmio.c \
|
|
mmsystem.c \
|
|
oss.c \
|
|
time.c
|
|
|
|
GLUE = lolvldrv.c \
|
|
mmsystem.c
|
|
|
|
RC_SRCS= \
|
|
winmm.rc
|
|
|
|
all: check_wrc $ $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
$(RC_SRCS:.rc=.s): $(WRC)
|
|
|
|
### Dependencies:
|