[SDK] Add AllocateAndGetTcp/UdpEx/2TableFromStack() functions family

This commit is contained in:
Pierre Schweitzer 2018-11-27 20:31:38 +01:00
parent 05657bfcfd
commit 7ce2f09a70
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B
2 changed files with 9 additions and 2 deletions

View file

@ -61,6 +61,13 @@ DWORD WINAPI SetIpTTL(UINT);
DWORD WINAPI SetTcpEntry(PMIB_TCPROW);
DWORD WINAPI UnenableRouter(OVERLAPPED*, LPDWORD);
#if (NTDDI_VERSION < NTDDI_VISTA)
DWORD WINAPI AllocateAndGetTcpExTableFromStack(PVOID*,BOOL,HANDLE,DWORD,DWORD);
DWORD WINAPI AllocateAndGetTcpExTable2FromStack(PVOID*,BOOL,HANDLE,DWORD,DWORD,TCP_TABLE_CLASS);
DWORD WINAPI AllocateAndGetUdpExTableFromStack(PVOID*,BOOL,HANDLE,DWORD,DWORD);
DWORD WINAPI AllocateAndGetUdpExTable2FromStack(PVOID*,BOOL,HANDLE,DWORD,DWORD,UDP_TABLE_CLASS);
#endif
#if (NTDDI_VERSION >= NTDDI_VISTA)
#include <netioapi.h>
#endif