Leaked source code of windows server 2003
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.
|
|
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000-2001 Microsoft Corporation
//
// Module Name:
// SelNodePage.h
//
// Maintained By:
// David Potter (DavidP) 31-JAN-2001
// Geoffrey Pease (GPease) 12-MAY-2000
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
//////////////////////////////////////////////////////////////////////////////
// Include Files
//////////////////////////////////////////////////////////////////////////////
#include "SelNodesPageCommon.h"
//////////////////////////////////////////////////////////////////////////////
//++
//
// class CSelNodePage
//
// Description:
//
//--
//////////////////////////////////////////////////////////////////////////////
class CSelNodePage : public CSelNodesPageCommon {
private: // data
HWND m_hwnd; // Our HWND
CClusCfgWizard * m_pccw; // Wizard
private: // methods
LRESULT OnInitDialog( HWND hDlgIn ); LRESULT OnNotify( WPARAM idCtrlIn, LPNMHDR pnmhdrIn ); LRESULT OnNotifyQueryCancel( void ); LRESULT OnNotifyWizNext( void ); LRESULT OnNotifySetActive( void ); LRESULT OnCommand( UINT idNotificationIn, UINT idControlIn, HWND hwndSenderIn );
HRESULT HrUpdateWizardButtons( void );
protected:
virtual void OnProcessedNodeWithBadDomain( PCWSTR pwcszNodeNameIn ); virtual void OnProcessedValidNode( PCWSTR pwcszNodeNameIn );
virtual HRESULT HrSetDefaultNode( PCWSTR pwcszNodeNameIn );
public: // methods
CSelNodePage( CClusCfgWizard * pccwIn ); virtual ~CSelNodePage( void );
static INT_PTR CALLBACK S_DlgProc( HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam );
}; //*** class CSelNodePage
|