mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +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"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<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="oskittcp">include</include>
|
||||
<define name="NDIS40" />
|
||||
|
@ -39,4 +39,5 @@
|
|||
<file>wait.c</file>
|
||||
</directory>
|
||||
<file>tcpip.rc</file>
|
||||
<file>tcpip.spec</file>
|
||||
</module>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
/* $Id$ */
|
||||
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "TCP/IP protocol driver\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "tcpip\0"
|
||||
|
|
|
@ -1,13 +1,8 @@
|
|||
; TCPIP.SYS - TCP/IP protocol driver
|
||||
|
||||
LIBRARY tcpip.sys
|
||||
|
||||
EXPORTS
|
||||
;FreeIprBuff
|
||||
;GetIFAndLink
|
||||
IPAddInterface@20
|
||||
@ stdcall IPAddInterface(long long long long long)
|
||||
;IPAllocBuff
|
||||
IPDelInterface@4
|
||||
@ stdcall IPDelInterface(long)
|
||||
;IPDelayedNdisReEnumerateBindings
|
||||
;IPDeregisterARP
|
||||
;IPDisableSniffer
|
||||
|
@ -22,11 +17,9 @@ IPDelInterface@4
|
|||
;IPRegisterProtocol
|
||||
;IPSetIPSecStatus
|
||||
;IPTransmit
|
||||
LookupRoute@8
|
||||
@ stdcall LookupRoute(long long)
|
||||
;LookupRouteInformation
|
||||
;SendICMPErr
|
||||
;SetIPSecPtr
|
||||
;UnSetIPSecPtr
|
||||
;UnSetIPSecSendPtr
|
||||
|
||||
; EOF
|
Loading…
Reference in a new issue