mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 12:23:30 +00:00
Added stubs to iphlpapi that are needed by netapi32.
svn path=/trunk/; revision=5941
This commit is contained in:
@@ -490,4 +490,51 @@ FlushIpNetTable(DWORD dwIfIndex)
|
||||
return result;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* GetIfEntry (IPHLPAPI.@)
|
||||
*
|
||||
*
|
||||
* PARAMS
|
||||
*
|
||||
* pIfRow [In/Out]
|
||||
*
|
||||
* RETURNS
|
||||
*
|
||||
* DWORD
|
||||
*
|
||||
*/
|
||||
DWORD
|
||||
WINAPI
|
||||
GetIfEntry(PMIB_IFROW pIfRow)
|
||||
{
|
||||
DWORD result = NO_ERROR;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************
|
||||
* GetIfTable (IPHLPAPI.@)
|
||||
*
|
||||
*
|
||||
* PARAMS
|
||||
*
|
||||
* pIfTable [In/Out]
|
||||
* pdwSize [In/Out]
|
||||
* bOrder [In]
|
||||
*
|
||||
* RETURNS
|
||||
*
|
||||
* DWORD
|
||||
*
|
||||
*/
|
||||
DWORD
|
||||
WINAPI
|
||||
GetIfTable(PMIB_IFTABLE pIfTable, PULONG pdwSize, BOOL bOrder)
|
||||
{
|
||||
DWORD result = NO_ERROR;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
||||
@@ -9,6 +9,8 @@ CreateIpForwardEntry @9
|
||||
GetAdaptersInfo
|
||||
GetNetworkParams @43
|
||||
GetNumberOfInterfaces @44
|
||||
GetIfEntry@4
|
||||
GetIfTable@12
|
||||
GetInterfaceInfo @34
|
||||
GetTcpStatistics @47
|
||||
GetTcpTable @49
|
||||
|
||||
@@ -9,6 +9,8 @@ CreateIpForwardEntry=CreateIpForwardEntry@4 @9
|
||||
GetAdaptersInfo=GetAdaptersInfo@8
|
||||
GetNetworkParams=GetNetworkParams@8 @43
|
||||
GetNumberOfInterfaces=GetNumberOfInterfaces@4 @44
|
||||
GetIfEntry=GetIfEntry@4
|
||||
GetIfTable=GetIfTable@12
|
||||
GetInterfaceInfo=GetInterfaceInfo@8 @34
|
||||
GetTcpStatistics=GetTcpStatistics@4 @47
|
||||
GetTcpTable=GetTcpTable@12 @49
|
||||
|
||||
Reference in New Issue
Block a user