WindowsXP-SP1/admin/dcpromo/exe/credentialspage.hpp
2020-09-30 16:53:49 +02:00

69 lines
997 B
C++

// Copyright (C) 1997 Microsoft Corporation
//
// credentials page
//
// 12-22-97 sburns
#ifndef CREDENTIALSPAGE_HPP_INCLUDED
#define CREDENTIALSPAGE_HPP_INCLUDED
class CredentialsPage : public DCPromoWizardPage
{
public:
CredentialsPage();
protected:
virtual ~CredentialsPage();
// Dialog overrides
virtual
bool
OnCommand(
HWND windowFrom,
unsigned controlIDFrom,
unsigned code);
virtual
void
OnInit();
// PropertyPage overrides
virtual
bool
OnSetActive();
// DCPromoWizardPage overrides
virtual
int
Validate();
private:
void
Enable();
bool
ShouldSkipPage();
int
DetermineNextPage();
bool readAnswerfile;
// not defined; no copying allowed
CredentialsPage(const CredentialsPage&);
const CredentialsPage& operator=(const CredentialsPage&);
};
#endif // CREDENTIALSPAGE_HPP_INCLUDED