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.

32 lines
765 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: ipcfg.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef HEADER_IPCFG
  11. #define HEADER_IPCFG
  12. HRESULT IpConfigTest(NETDIAG_PARAMS* pParams,
  13. NETDIAG_RESULT* pResults);
  14. void IpConfigCleanup(IN NETDIAG_PARAMS *pParams,
  15. IN OUT NETDIAG_RESULT *pResults);
  16. HRESULT InitIpconfig(NETDIAG_PARAMS *pParams, NETDIAG_RESULT *pResults);
  17. LONG CountInterfaces(PIP_ADAPTER_INFO ListAdapterInfo);
  18. int AddIpAddressString(PIP_ADDR_STRING AddressList, LPSTR Address, LPSTR Mask);
  19. VOID FreeIpAddressStringList(PIP_ADDR_STRING pAddressList);
  20. #endif