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.
 
 
 
 
 
 

69 lines
1.1 KiB

// Copyright (C) 1999 Microsoft Corporation
//
// Safe Mode Administrator password page
//
// 6-3-99 sburns
#ifndef SAFEMODE_HPP_INCLUDED
#define SAFEMODE_HPP_INCLUDED
#include "page.hpp"
#include "PasswordEditBox.hpp"
class SafeModePasswordPage : public DCPromoWizardPage
{
public:
SafeModePasswordPage();
protected:
virtual ~SafeModePasswordPage();
// Dialog overrides
virtual
void
OnInit();
virtual
bool
OnNotify(
HWND windowFrom,
UINT_PTR controlIDFrom,
UINT code,
LPARAM lParam);
// PropertyPage overrides
virtual
bool
OnSetActive();
// DCPromoWizardPage overrides
virtual
int
Validate();
private:
// not defined; no copying allowed
SafeModePasswordPage(const SafeModePasswordPage&);
const SafeModePasswordPage& operator=(const SafeModePasswordPage&);
// NTRAID#NTBUG9-202238-2000/11/07-sburns
PasswordEditBox password;
PasswordEditBox confirm;
};
#endif // SAFEMODE_HPP_INCLUDED