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

/**********************************************************************/
/** Microsoft Windows/NT **/
/** Copyright(c) Microsoft Corporation, 1997 - 1999 -99 **/
/**********************************************************************/
/*
multip.cpp
Comment goes here
FILE HISTORY:
*/
#include "stdafx.h"
#include "multip.h"
CMultipleIpNamePair::CMultipleIpNamePair()
: CIpNamePair()
{
m_nCount = 0;
}
CMultipleIpNamePair::CMultipleIpNamePair(
const CMultipleIpNamePair& pair
)
: CIpNamePair(pair)
{
m_nCount = pair.m_nCount;
for (int i = 0; i < WINSINTF_MAX_MEM; ++i)
{
m_iaIpAddress[i] = pair.m_iaIpAddress[i];
}
}