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) 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
|