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.
62 lines
1.2 KiB
62 lines
1.2 KiB
//+----------------------------------------------------------------------------
|
|
//
|
|
// Windows NT Secure Server Roles Security Configuration Wizard
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2002
|
|
//
|
|
// File: AdditionalFuncPage.h
|
|
//
|
|
// History: 29-Oct-01 Yanggao created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef ADDITIONALFUNCPAGE_H_INCLUDED
|
|
#define ADDITIONALFUNCPAGE_H_INCLUDED
|
|
|
|
#include "page.h"
|
|
|
|
class AdditionalFuncPage : public SecCfgWizardPage
|
|
{
|
|
public:
|
|
|
|
AdditionalFuncPage();
|
|
|
|
protected:
|
|
|
|
virtual ~AdditionalFuncPage();
|
|
|
|
// Dialog overrides
|
|
|
|
virtual
|
|
bool
|
|
OnCommand(
|
|
HWND windowFrom,
|
|
unsigned controlIDFrom,
|
|
unsigned code);
|
|
|
|
virtual
|
|
void
|
|
OnInit();
|
|
|
|
// PropertyPage overrides
|
|
|
|
virtual
|
|
bool
|
|
OnSetActive();
|
|
|
|
// DCPromoWizardPage oveerrides
|
|
|
|
virtual
|
|
int
|
|
Validate();
|
|
|
|
private:
|
|
|
|
// not defined; no copying allowed
|
|
|
|
AdditionalFuncPage(const AdditionalFuncPage&);
|
|
const AdditionalFuncPage& operator=(const AdditionalFuncPage&);
|
|
};
|
|
|
|
#endif // ADDITIONALFUNCPAGE_H_INCLUDED
|