windows-nt/Source/XPSP1/NT/net/tcpip/apis/iphlpapi/dll/compare.h

89 lines
1.2 KiB
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (c) 1995 Microsoft Corporation
Module Name:
net\sockets\tcpcmd\compare.h
Abstract:
Forward declarations for the comparison functions
Revision History:
Amritansh Raghav
--*/
#ifndef __COMPARE_H__
#define __COMPARE_H__
int
__cdecl
CompareIfRow(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
CompareIfRow2(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
CompareIpAddrRow(
CONST VOID *pElem1,
CONST VOID *pElem2
);int
__cdecl
CompareIpAddrRow2(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
CompareTcpRow(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
CompareTcp6Row(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
CompareUdpRow(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
CompareUdp6Row(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
CompareIpNetRow(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
CompareIpForwardRow(
CONST VOID *pElem1,
CONST VOID *pElem2
);
int
__cdecl
NhiCompareIfInfoRow(
CONST VOID *pvElem1,
CONST VOID *pvElem2
);
#endif // __COMPARE_H__