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.
 
 
 
 
 
 

92 lines
1.6 KiB

#ifndef __TSMISC_H__
#define __TSMISC_H__
/*++
Copyright (C) Microsoft Corporation
Module Name:
tsmisc.h
Abstract:
header file for tsmain.cpp
Author:
Jason Cobb (jasonc) created
Revision History:
--*/
//
// Class that represents a single wizard page for the following problems:
//
// Enable device
// Restart
//
class CTSEnableDeviceIntroPage : public CPropSheetPage
{
public:
CTSEnableDeviceIntroPage() :
m_pDevice(NULL),
m_Problem(0),
CPropSheetPage(g_hInstance, IDD_TS_ENABLEDEVICE_INTRO)
{
}
virtual BOOL OnWizNext();
virtual BOOL OnSetActive();
HPROPSHEETPAGE Create(CDevice* pDevice);
private:
CDevice* m_pDevice;
ULONG m_Problem;
};
class CTSEnableDeviceFinishPage : public CPropSheetPage
{
public:
CTSEnableDeviceFinishPage() :
m_pDevice(NULL),
m_Problem(0),
CPropSheetPage(g_hInstance, IDD_TS_ENABLEDEVICE_FINISH)
{
}
virtual BOOL OnWizFinish();
virtual BOOL OnSetActive();
HPROPSHEETPAGE Create(CDevice* pDevice);
private:
CDevice* m_pDevice;
ULONG m_Problem;
};
class CTSRestartComputerFinishPage : public CPropSheetPage
{
public:
CTSRestartComputerFinishPage() :
m_pDevice(NULL),
m_Problem(0),
CPropSheetPage(g_hInstance, IDD_TS_RESTARTCOMPUTER_FINISH)
{
}
virtual BOOL OnWizFinish();
virtual BOOL OnSetActive();
HPROPSHEETPAGE Create(CDevice* pDevice);
private:
CDevice* m_pDevice;
ULONG m_Problem;
};
#endif // __TSMISC__