Source code of Windows XP (NT5)
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.

75 lines
876 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. iphlpwrp.h
  5. Abstract:
  6. This module contains all of the code prototypes to
  7. wrap the ip public help apis for getting the list of
  8. active interfaces on a machine.
  9. Author:
  10. krishnaG
  11. Environment
  12. User Level: Win32
  13. Revision History:
  14. abhisheV 30-September-1999
  15. --*/
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. DWORD
  20. PaPNPGetIfTable(
  21. OUT PMIB_IFTABLE * ppMibIfTable
  22. );
  23. DWORD
  24. PaPNPGetInterfaceInformation(
  25. OUT PIP_INTERFACE_INFO * ppInterfaceInfo
  26. );
  27. VOID
  28. PrintMibIfTable(
  29. IN PMIB_IFTABLE pMibIfTable
  30. );
  31. VOID
  32. PrintInterfaceInfo(
  33. IN PIP_INTERFACE_INFO pInterfaceInfo
  34. );
  35. VOID
  36. PrintMibAddrTable(
  37. IN PMIB_IPADDRTABLE pMibAddrTable
  38. );
  39. DWORD
  40. PaPNPGetIpAddrTable(
  41. OUT PMIB_IPADDRTABLE * ppMibIpAddrTable
  42. );
  43. #ifdef __cplusplus
  44. }
  45. #endif