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.
 
 
 
 
 
 

50 lines
749 B

// Copyright (C) 1997-2000 Microsoft Corporation
//
// get syskey on diskette for replica from media page
//
// 25 Apr 2000 sburns
#ifndef SYSKEYDISKDIALOG_HPP_INCLUDED
#define SYSKEYDISKDIALOG_HPP_INCLUDED
class SyskeyDiskDialog : public Dialog
{
public:
SyskeyDiskDialog();
virtual ~SyskeyDiskDialog();
protected:
// Dialog overrides
virtual
bool
OnCommand(
HWND windowFrom,
unsigned controlIDFrom,
unsigned code);
virtual
void
OnInit();
private:
bool
Validate();
// not defined; no copying allowed
SyskeyDiskDialog(const SyskeyDiskDialog&);
const SyskeyDiskDialog& operator=(const SyskeyDiskDialog&);
};
#endif // SYSKEYDISKDIALOG_HPP_INCLUDED