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.

34 lines
754 B

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corporation, 1997 - 1999 -99 **/
  4. /**********************************************************************/
  5. /*
  6. multip.cpp
  7. Comment goes here
  8. FILE HISTORY:
  9. */
  10. #include "stdafx.h"
  11. #include "multip.h"
  12. CMultipleIpNamePair::CMultipleIpNamePair()
  13. : CIpNamePair()
  14. {
  15. m_nCount = 0;
  16. }
  17. CMultipleIpNamePair::CMultipleIpNamePair(
  18. const CMultipleIpNamePair& pair
  19. )
  20. : CIpNamePair(pair)
  21. {
  22. m_nCount = pair.m_nCount;
  23. for (int i = 0; i < WINSINTF_MAX_MEM; ++i)
  24. {
  25. m_iaIpAddress[i] = pair.m_iaIpAddress[i];
  26. }
  27. }