mirror of https://github.com/tongzx/nt5src
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.
65 lines
1.3 KiB
65 lines
1.3 KiB
//+--------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1994 - 1997.
|
|
//
|
|
// File: welcome.hxx
|
|
//
|
|
// Contents: Task wizard welcome (initial) property page.
|
|
//
|
|
// Classes: CWelcomePage
|
|
//
|
|
// History: 11-21-1997 SusiA Stole from Task Scheduler wizard
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
#ifndef __WELCOME_HXX_
|
|
#define __WELCOME_HXX_
|
|
|
|
//+--------------------------------------------------------------------------
|
|
//
|
|
// Class: CWelcomePage
|
|
//
|
|
// Purpose: Implement the task wizard welcome dialog
|
|
//
|
|
// History: 11-21-1997 SusiA Stole from Task Scheduler wizard
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
class CWelcomePage: public CWizPage
|
|
|
|
{
|
|
public:
|
|
|
|
//
|
|
// Object creation/destruction
|
|
//
|
|
|
|
#ifdef _WIZ97FONTS
|
|
|
|
CWelcomePage::CWelcomePage(
|
|
HINSTANCE hinst,
|
|
HFONT hBoldFont,
|
|
ISyncSchedule *pISyncSched,
|
|
HPROPSHEETPAGE *phPSP);
|
|
|
|
|
|
HFONT m_hBoldFont;
|
|
|
|
#else
|
|
|
|
CWelcomePage::CWelcomePage(
|
|
HINSTANCE hinst,
|
|
ISyncSchedule *pISyncSched,
|
|
HPROPSHEETPAGE *phPSP);
|
|
|
|
#endif // _WIZ97FONTS
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // __WELCOME_HXX_
|
|
|