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.
51 lines
1.1 KiB
51 lines
1.1 KiB
//***************************************************************************
|
|
//
|
|
// UPDATECFG.CPP
|
|
//
|
|
// Module: NLB Manager
|
|
//
|
|
// Purpose: Defines class NlbConfigurationUpdate, used for
|
|
// async update of NLB properties associated with a particular NIC.
|
|
//
|
|
// Copyright (c)2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
// History:
|
|
//
|
|
// 04/05/01 JosephJ Created
|
|
//
|
|
//***************************************************************************
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
#include "disclaimer.h"
|
|
|
|
DisclaimerDialog::DisclaimerDialog(CWnd* parent )
|
|
:
|
|
CDialog( IDD, parent )
|
|
{}
|
|
|
|
void
|
|
DisclaimerDialog::DoDataExchange( CDataExchange* pDX )
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
|
|
// DDX_Control( pDX, IDC_DO_NOT_REMIND, dontRemindMe );
|
|
DDX_Check(pDX, IDC_DO_NOT_REMIND, dontRemindMe);
|
|
}
|
|
|
|
|
|
BOOL
|
|
DisclaimerDialog::OnInitDialog()
|
|
{
|
|
BOOL fRet = CDialog::OnInitDialog();
|
|
|
|
dontRemindMe = 0;
|
|
return fRet;
|
|
}
|
|
|
|
void DisclaimerDialog::OnOK()
|
|
{
|
|
//
|
|
// Get the current check status ....
|
|
//
|
|
CDialog::OnOK();
|
|
}
|