mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added stubs to iphlpapi that are needed by netapi32.
svn path=/trunk/; revision=5941
This commit is contained in:
parent
e388dadfac
commit
449c82d834
3 changed files with 51 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue