Replace .def file by a .spec file

svn path=/trunk/; revision=36563
This commit is contained in:
Hervé Poussineau 2008-09-28 09:09:57 +00:00
parent f610f642b1
commit 0970d7b76e
3 changed files with 5 additions and 13 deletions

View file

@ -1,7 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd"> <!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
<module name="tcpip" type="kernelmodedriver" installbase="system32/drivers" installname="tcpip.sys"> <module name="tcpip" type="kernelmodedriver" installbase="system32/drivers" installname="tcpip.sys">
<importlibrary definition="tcpip.def"></importlibrary> <importlibrary definition="tcpip.spec.def" />
<include base="tcpip">include</include> <include base="tcpip">include</include>
<include base="oskittcp">include</include> <include base="oskittcp">include</include>
<define name="NDIS40" /> <define name="NDIS40" />
@ -39,4 +39,5 @@
<file>wait.c</file> <file>wait.c</file>
</directory> </directory>
<file>tcpip.rc</file> <file>tcpip.rc</file>
<file>tcpip.spec</file>
</module> </module>

View file

@ -1,5 +1,3 @@
/* $Id$ */
#define REACTOS_VERSION_DLL #define REACTOS_VERSION_DLL
#define REACTOS_STR_FILE_DESCRIPTION "TCP/IP protocol driver\0" #define REACTOS_STR_FILE_DESCRIPTION "TCP/IP protocol driver\0"
#define REACTOS_STR_INTERNAL_NAME "tcpip\0" #define REACTOS_STR_INTERNAL_NAME "tcpip\0"

View file

@ -1,13 +1,8 @@
; TCPIP.SYS - TCP/IP protocol driver
LIBRARY tcpip.sys
EXPORTS
;FreeIprBuff ;FreeIprBuff
;GetIFAndLink ;GetIFAndLink
IPAddInterface@20 @ stdcall IPAddInterface(long long long long long)
;IPAllocBuff ;IPAllocBuff
IPDelInterface@4 @ stdcall IPDelInterface(long)
;IPDelayedNdisReEnumerateBindings ;IPDelayedNdisReEnumerateBindings
;IPDeregisterARP ;IPDeregisterARP
;IPDisableSniffer ;IPDisableSniffer
@ -22,11 +17,9 @@ IPDelInterface@4
;IPRegisterProtocol ;IPRegisterProtocol
;IPSetIPSecStatus ;IPSetIPSecStatus
;IPTransmit ;IPTransmit
LookupRoute@8 @ stdcall LookupRoute(long long)
;LookupRouteInformation ;LookupRouteInformation
;SendICMPErr ;SendICMPErr
;SetIPSecPtr ;SetIPSecPtr
;UnSetIPSecPtr ;UnSetIPSecPtr
;UnSetIPSecSendPtr ;UnSetIPSecSendPtr
; EOF