mirror of
https://github.com/reactos/wine.git
synced 2024-12-01 15:40:43 +00:00
0382ea1d8a
- completely rewritten headers (DX9 compat.; look much nicer now ;=) - removed IDirectMusicSong and IDirectMusicMelodyFormulationTrack (which are removed from DX9; weren't implemented in DX8 anyway) - combined/simplified IDirectMusicSomething / IDirectMusicObject / IPersistStream for objects that support loading - implemented IDirectMusicObject on all such objects; via generic functions - combined IDirectMusicTrack(8)/IPersistStream on all tracks - fully implemented IDirectMusicContainer (at least 90% if there are no private interfaces) - implemented IDirectMusicCollection (99% work & MS compliant behaviour; except for instruments) - tried to implement IDirectMusicInstrument (unfortunately uses some dirty private interfaces... :( - added dswave.dll; DirectMusic Wave - some changes in style - many, many more ;)
25 lines
385 B
Makefile
25 lines
385 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = dmstyle.dll
|
|
IMPORTS = ole32 user32 advapi32 kernel32
|
|
EXTRALIBS = $(LIBUUID)
|
|
|
|
C_SRCS = \
|
|
auditiontrack.c \
|
|
chordtrack.c \
|
|
commandtrack.c \
|
|
dmstyle_main.c \
|
|
motiftrack.c \
|
|
mutetrack.c \
|
|
regsvr.c \
|
|
style.c \
|
|
styletrack.c
|
|
|
|
RC_SRCS = version.rc
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
### Dependencies:
|