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.

49 lines
816 B

  1. // Copyright (C) 1997-2000 Microsoft Corporation
  2. //
  3. // get syskey from user for replica from media page
  4. //
  5. // 25 Apr 2000 sburns
  6. #ifndef SYSKEYPROMPTDIALOG_HPP_INCLUDED
  7. #define SYSKEYPROMPTDIALOG_HPP_INCLUDED
  8. class SyskeyPromptDialog : public Dialog
  9. {
  10. public:
  11. SyskeyPromptDialog();
  12. virtual ~SyskeyPromptDialog();
  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. SyskeyPromptDialog(const SyskeyPromptDialog&);
  29. const SyskeyPromptDialog& operator=(const SyskeyPromptDialog&);
  30. };
  31. #endif // SYSKEYPROMPTDIALOG_HPP_INCLUDED