mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Added new module for iphlpapi.dll
svn path=/trunk/; revision=3356
This commit is contained in:
parent
4115f5826a
commit
85acea80c6
4 changed files with 76 additions and 0 deletions
9
reactos/lib/iphlpapi/iphlpapi.def
Normal file
9
reactos/lib/iphlpapi/iphlpapi.def
Normal file
|
@ -0,0 +1,9 @@
|
|||
; IPHLPAPI.DLL - ReactOS Sockets 2 IP Helper API DLL
|
||||
|
||||
LIBRARY iphlpapi.dll
|
||||
|
||||
EXPORTS
|
||||
AddIPAddress
|
||||
SetIpNetEntry
|
||||
CreateIpForwardEntry
|
||||
; EOF
|
9
reactos/lib/iphlpapi/iphlpapi.edf
Normal file
9
reactos/lib/iphlpapi/iphlpapi.edf
Normal file
|
@ -0,0 +1,9 @@
|
|||
; IPHLPAPI.DLL - ReactOS Sockets 2 IP Helper API DLL
|
||||
|
||||
LIBRARY iphlpapi.dll
|
||||
|
||||
EXPORTS
|
||||
AddIPAddress=AddIPAddress@20
|
||||
SetIpNetEntry=SetIpNetEntry@4
|
||||
CreateIpForwardEntry=CreateIpForwardEntry@4
|
||||
; EOF
|
39
reactos/lib/iphlpapi/iphlpapi.rc
Normal file
39
reactos/lib/iphlpapi/iphlpapi.rc
Normal file
|
@ -0,0 +1,39 @@
|
|||
#include <defines.h>
|
||||
#include <reactos/resource.h>
|
||||
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION RES_UINT_FV_MAJOR,RES_UINT_FV_MINOR,RES_UINT_FV_REVISION,RES_UINT_FV_BUILD
|
||||
PRODUCTVERSION RES_UINT_PV_MAJOR,RES_UINT_PV_MINOR,RES_UINT_PV_REVISION,RES_UINT_PV_BUILD
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS 0x40004L
|
||||
FILETYPE 0x2L
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", RES_STR_COMPANY_NAME
|
||||
VALUE "FileDescription", "ReactOS Sockets 2 IP Helper API\0"
|
||||
VALUE "FileVersion", RES_STR_FILE_VERSION
|
||||
VALUE "InternalName", "iphlpapi\0"
|
||||
VALUE "LegalCopyright", RES_STR_LEGAL_COPYRIGHT
|
||||
VALUE "OriginalFilename", "iphlpapi.dll\0"
|
||||
VALUE "ProductName", RES_STR_PRODUCT_NAME
|
||||
VALUE "ProductVersion", RES_STR_PRODUCT_VERSION
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1200
|
||||
END
|
||||
END
|
||||
|
||||
|
19
reactos/lib/iphlpapi/makefile
Normal file
19
reactos/lib/iphlpapi/makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
# $Id: makefile
|
||||
|
||||
PATH_TO_TOP = ../..
|
||||
|
||||
TARGET_TYPE = dynlink
|
||||
|
||||
TARGET_NAME = iphlpapi
|
||||
|
||||
TARGET_BASE = 0x777c0000
|
||||
|
||||
TARGET_CFLAGS = -DUNICODE
|
||||
|
||||
TARGET_SDKLIBS = ntdll.a kernel32.a
|
||||
|
||||
TARGET_OBJECTS = $(TARGET_NAME).o
|
||||
|
||||
include $(PATH_TO_TOP)/rules.mak
|
||||
|
||||
include $(TOOLS_PATH)/helper.mk
|
Loading…
Reference in a new issue