mirror of
https://github.com/reactos/reactos.git
synced 2025-05-13 22:30:21 +00:00
Replace .def file by a .spec file
svn path=/trunk/; revision=36563
This commit is contained in:
parent
f610f642b1
commit
0970d7b76e
3 changed files with 5 additions and 13 deletions
|
@ -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>
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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
|
|
Loading…
Reference in a new issue