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.
|
|
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000-2001 Microsoft Corporation
//
// Module Name:
// WizPageWelcome.h
//
// Maintained By:
// David Potter (DavidP) 26-MAR-2001
// Geoffrey Pease (GPease) 12-MAY-2000
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
class CWelcomePage { friend class CClusCfgWizard;
private: // data
HWND m_hwnd; // Our HWND
HFONT m_hFont; // Title font
ECreateAddMode m_ecamCreateAddMode; // Creating? Adding?
private: // methods
CWelcomePage( ECreateAddMode ecamCreateAddModeIn ); virtual ~CWelcomePage( void );
LRESULT OnInitDialog( void ); LRESULT OnNotify( WPARAM idCtrlIn, LPNMHDR pnmhdrIn );
public: // methods
static INT_PTR CALLBACK S_DlgProc( HWND hwndDlg, UINT nMsg, WPARAM wParam, LPARAM lParam );
}; //*** class CWelcomePage
|