diff options
author | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
---|---|---|
committer | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
commit | e611b132f9b8abe35b362e5870b74bce94a1e58e (patch) | |
tree | a5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/tapi/qa/trapper/itest/sline/sources | |
download | NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2 NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip |
Diffstat (limited to '')
-rw-r--r-- | private/tapi/qa/trapper/itest/sline/sources | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/private/tapi/qa/trapper/itest/sline/sources b/private/tapi/qa/trapper/itest/sline/sources new file mode 100644 index 000000000..2179e63d6 --- /dev/null +++ b/private/tapi/qa/trapper/itest/sline/sources @@ -0,0 +1,74 @@ +!IF 0 + +Copyright (c) 1989-1993 Microsoft Corporation + +Module Name: + + sources. + +Abstract: + + This file specifies the target component being built and the list of + sources files needed to build that component. Also specifies optional + compiler switches and libraries that are unique for the component being + built. + +Author: + + John Rogers (JohnRo) 25-Oct-1991 + +NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl + +Revision History: + +!ENDIF + +MAJORCOMP=net +MINORCOMP=tapi + +TARGETNAME=sline +TARGETPATH=$(BASEDIR)\public\sdk\lib +TARGETTYPE=DYNLINK +TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\kernel32.lib \ + $(BASEDIR)\public\sdk\lib\*\advapi32.lib \ + $(BASEDIR)\public\sdk\lib\*\user32.lib \ + $(BASEDIR)\public\sdk\lib\*\tcore.lib \ + $(BASEDIR)\public\sdk\lib\*\ttest.lib \ + $(BASEDIR)\public\sdk\lib\*\tapi32.lib + + +DLLBASE=0x67000000 + +INCLUDES=..;.;..\..\..\tcore;..\.. + + +USE_CRTDLL=1 + +SOURCES= sline.c \ + itlgad.c \ + itlmod.c \ + itlmom.c \ + itlmot.c \ + itlpak.c \ + itlupak.c \ + itlucc.c \ + itlpk.c \ + itlgap.c \ + itlsap.c \ + itlscl.c \ + itlscd.c \ + itlscqs.c \ + itlsct.c \ + itlslds.c \ + sline.rc + + +C_DEFINES=-DWINVER=0x400 -DTAPI_NT=1 -DTAPI_1_1=1 -DTAPI_1_4=1 -DTAPI_2_0=1 + +UMTYPE=windows + +DLLENTRY=SLineDllMain + +!IFNDEF 386_WARNING_LEVEL +386_WARNING_LEVEL=/W3 +!ENDIF |