Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. net\sockets\tcpcmd\compare.h
  5. Abstract:
  6. Forward declarations for the comparison functions
  7. Revision History:
  8. Amritansh Raghav
  9. --*/
  10. #ifndef __COMPARE_H__
  11. #define __COMPARE_H__
  12. int
  13. __cdecl
  14. CompareIfRow(
  15. CONST VOID *pElem1,
  16. CONST VOID *pElem2
  17. );
  18. int
  19. __cdecl
  20. CompareIfRow2(
  21. CONST VOID *pElem1,
  22. CONST VOID *pElem2
  23. );
  24. int
  25. __cdecl
  26. CompareIpAddrRow(
  27. CONST VOID *pElem1,
  28. CONST VOID *pElem2
  29. );int
  30. __cdecl
  31. CompareIpAddrRow2(
  32. CONST VOID *pElem1,
  33. CONST VOID *pElem2
  34. );
  35. int
  36. __cdecl
  37. CompareTcpRow(
  38. CONST VOID *pElem1,
  39. CONST VOID *pElem2
  40. );
  41. int
  42. __cdecl
  43. CompareTcp6Row(
  44. CONST VOID *pElem1,
  45. CONST VOID *pElem2
  46. );
  47. int
  48. __cdecl
  49. CompareUdpRow(
  50. CONST VOID *pElem1,
  51. CONST VOID *pElem2
  52. );
  53. int
  54. __cdecl
  55. CompareUdp6Row(
  56. CONST VOID *pElem1,
  57. CONST VOID *pElem2
  58. );
  59. int
  60. __cdecl
  61. CompareIpNetRow(
  62. CONST VOID *pElem1,
  63. CONST VOID *pElem2
  64. );
  65. int
  66. __cdecl
  67. CompareIpForwardRow(
  68. CONST VOID *pElem1,
  69. CONST VOID *pElem2
  70. );
  71. int
  72. __cdecl
  73. NhiCompareIfInfoRow(
  74. CONST VOID *pvElem1,
  75. CONST VOID *pvElem2
  76. );
  77. #endif // __COMPARE_H__