Added stubs to iphlpapi that are needed by netapi32.

svn path=/trunk/; revision=5941
This commit is contained in:
Steven Edwards 2003-08-30 15:27:42 +00:00
parent e388dadfac
commit 449c82d834
3 changed files with 51 additions and 0 deletions

View file

@ -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 */

View file

@ -9,6 +9,8 @@ CreateIpForwardEntry @9
GetAdaptersInfo
GetNetworkParams @43
GetNumberOfInterfaces @44
GetIfEntry@4
GetIfTable@12
GetInterfaceInfo @34
GetTcpStatistics @47
GetTcpTable @49

View file

@ -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