iphlpapi: Added PfCreateInterface stub implementation.

This commit is contained in:
Jacek Caban 2011-06-07 13:10:57 +02:00 committed by Alexandre Julliard
parent 39503fdf9c
commit 76eba12e1c
2 changed files with 12 additions and 1 deletions

View File

@ -92,7 +92,7 @@
@ stub _PfAddGlobalFilterToInterface@8
@ stub _PfBindInterfaceToIPAddress@12
@ stub _PfBindInterfaceToIndex@16
@ stub _PfCreateInterface@24
@ stdcall _PfCreateInterface@24(long long long long long ptr) PfCreateInterface
@ stub _PfDeleteInterface@4
@ stub _PfDeleteLog@0
@ stub _PfGetInterfaceStatistics@16

View File

@ -55,6 +55,7 @@
#include "ifenum.h"
#include "ipstats.h"
#include "ipifcons.h"
#include "fltdefs.h"
#include "wine/debug.h"
@ -2256,3 +2257,13 @@ DWORD WINAPI UnenableRouter(OVERLAPPED * pOverlapped, LPDWORD lpdwEnableCount)
*/
return ERROR_NOT_SUPPORTED;
}
/******************************************************************
* PfCreateInterface (IPHLPAPI.@)
*/
DWORD WINAPI PfCreateInterface(DWORD dwName, PFFORWARD_ACTION inAction, PFFORWARD_ACTION outAction,
BOOL bUseLog, BOOL bMustBeUnique, INTERFACE_HANDLE *ppInterface)
{
FIXME("(%d %d %d %x %x %p) stub\n", dwName, inAction, outAction, bUseLog, bMustBeUnique, ppInterface);
return ERROR_CALL_NOT_IMPLEMENTED;
}