-
Notifications
You must be signed in to change notification settings - Fork 5
/
sources
60 lines (54 loc) · 1.92 KB
/
sources
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# 1010 PCI/PCIe Audio Driver
# Copyright (c) Eugene Gavrilov, 2002-2016
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
TARGETNAME=1010pci
TARGETTYPE=DRIVER
MSC_WARNING_LEVEL=/W3 /WX
PRECOMPILED_CXX=1
PRECOMPILED_INCLUDE=common.h
# enable Win7-specific WaveRT stuff in portcls.h / ksmedia.h
_NT_TARGET_VERSION=$(_NT_TARGET_VERSION_WIN7)
TARGETLIBS=$(SDK_LIB_PATH)\libcntpr.lib\
$(SDK_LIB_PATH)\ksguid.lib \
$(SDK_LIB_PATH)\ks.lib \
$(SDK_LIB_PATH)\hal.lib \
$(SDK_LIB_PATH)\ntstrsafe.lib \
$(SDK_LIB_PATH)\ntoskrnl.lib \
$(SDK_LIB_PATH)\portcls.lib \
$(SDK_LIB_PATH)\wdmsec.lib \
$(SDK_LIB_PATH)\Rtlver.lib \
$(SDK_LIB_PATH)\Wdmsec.lib
SOURCES= driver.rc \
main.cpp \
debug.cpp \
pcdevice.cpp \
pcdriver.cpp \
guids.cpp \
comkrnl.cpp \
wave.cpp \
topology.cpp \
adapter.cpp \
property.cpp \
wavestream.cpp \
hal.cpp \
dsp.cpp \
hwbuffer.cpp \
emu1010b_netlist.cpp \
voices.cpp \
dsp.cpp \
irq.cpp \
audiobuffer.cpp \
util.cpp