You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
754 B
35 lines
754 B
#############################################################################
|
|
#
|
|
# Confidential Microsoft
|
|
# Copyright (C) Microsoft Corporation 2000-2001
|
|
# All Rights Reserved.
|
|
#
|
|
# Sources for AVC streaming filter driver
|
|
#
|
|
##########################################################################
|
|
TARGETNAME=avcstrm
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DRIVER
|
|
DRIVERTYPE=WDM
|
|
|
|
MSC_WARNING_LEVEL=-W3 -WX
|
|
USE_MAPSYM = 1
|
|
|
|
INCLUDES= \
|
|
$(MULTIMEDIA_INC_PATH)
|
|
|
|
TARGETLIBS= \
|
|
$(DDK_LIB_PATH)\ksguid.lib
|
|
|
|
SOURCES= \
|
|
filter.c \
|
|
stream.c \
|
|
avcutil.c \
|
|
pnp.c \
|
|
power.c \
|
|
util.c \
|
|
filter.rc
|
|
|
|
|
|
|
|
|