42 lines
658 B
Plaintext
42 lines
658 B
Plaintext
|
!if 0
|
||
|
Copyright (c) 1991-1996 Microsoft Corporation
|
||
|
!endif
|
||
|
|
||
|
#
|
||
|
# Create an MCI handler DLL
|
||
|
#
|
||
|
|
||
|
MAJORCOMP=windows
|
||
|
MINORCOMP=mci
|
||
|
|
||
|
TARGETNAME=mciwave
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=DYNLINK
|
||
|
UMTYPE=windows
|
||
|
|
||
|
NTPROFILEINPUT=yes
|
||
|
|
||
|
# Define libs we need and where to find them
|
||
|
|
||
|
TARGETLIBS=$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\winmm.lib
|
||
|
|
||
|
INCLUDES=..\..\inc;..\inc
|
||
|
|
||
|
USE_NTDLL=1
|
||
|
|
||
|
SOURCES=mwrec.c \
|
||
|
mwinfo.c \
|
||
|
mwplay.c \
|
||
|
mciwave.c \
|
||
|
drvproc.c \
|
||
|
debug.c \
|
||
|
config.c \
|
||
|
support.c \
|
||
|
mciwave.rc
|
||
|
|
||
|
# Set up the entry point
|
||
|
|
||
|
DLLENTRY=DllInstanceInit
|