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.

49 lines
749 B

  1. // Copyright (C) 1997-2000 Microsoft Corporation
  2. //
  3. // get syskey on diskette for replica from media page
  4. //
  5. // 25 Apr 2000 sburns
  6. #ifndef SYSKEYDISKDIALOG_HPP_INCLUDED
  7. #define SYSKEYDISKDIALOG_HPP_INCLUDED
  8. class SyskeyDiskDialog : public Dialog
  9. {
  10. public:
  11. SyskeyDiskDialog();
  12. virtual ~SyskeyDiskDialog();
  13. protected:
  14. // Dialog overrides
  15. virtual
  16. bool
  17. OnCommand(
  18. HWND windowFrom,
  19. unsigned controlIDFrom,
  20. unsigned code);
  21. virtual
  22. void
  23. OnInit();
  24. private:
  25. bool
  26. Validate();
  27. // not defined; no copying allowed
  28. SyskeyDiskDialog(const SyskeyDiskDialog&);
  29. const SyskeyDiskDialog& operator=(const SyskeyDiskDialog&);
  30. };
  31. #endif // SYSKEYDISKDIALOG_HPP_INCLUDED