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.

63 lines
1.0 KiB

  1. // Copyright (C) 2002 Microsoft Corporation
  2. //
  3. // Warn about SMB signing page.
  4. //
  5. // 15 October 2002 sburns
  6. #ifndef SECURECOMMWARNINGPAGE_HPP_INCLUDED
  7. #define SECURECOMMWARNINGPAGE_HPP_INCLUDED
  8. class SecureCommWarningPage : public DCPromoWizardPage
  9. {
  10. public:
  11. SecureCommWarningPage();
  12. protected:
  13. virtual ~SecureCommWarningPage();
  14. // Dialog overrides
  15. virtual
  16. bool
  17. OnNotify(
  18. HWND windowFrom,
  19. UINT_PTR controlIDFrom,
  20. UINT code,
  21. LPARAM lParam);
  22. virtual
  23. void
  24. OnInit();
  25. // PropertyPage overrides
  26. virtual
  27. bool
  28. OnSetActive();
  29. // DCPromoWizardPage overrides
  30. virtual
  31. int
  32. Validate();
  33. private:
  34. void
  35. InitializeBullets();
  36. HFONT bulletFont;
  37. // not defined; no copying allowed
  38. SecureCommWarningPage(const SecureCommWarningPage&);
  39. const SecureCommWarningPage& operator=(const SecureCommWarningPage&);
  40. };
  41. #endif // SECURECOMMWARNINGPAGE_HPP_INCLUDED