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.

52 lines
837 B

  1. // Copyright (C) 1998 Microsoft Corporation
  2. //
  3. // Splash screen for unattended mode
  4. //
  5. // 10-1-98 sburns
  6. #ifndef UNATTENDSPLASHDIALOG_HPP_INCLUDED
  7. #define UNATTENDSPLASHDIALOG_HPP_INCLUDED
  8. class UnattendSplashDialog : public Dialog
  9. {
  10. public:
  11. UnattendSplashDialog();
  12. virtual ~UnattendSplashDialog();
  13. // Cause the window to destroy itself and delete itself (call delete on
  14. // the this pointer.
  15. void
  16. SelfDestruct();
  17. // Dialog overrides
  18. virtual
  19. void
  20. OnInit();
  21. virtual
  22. bool
  23. OnMessage(
  24. UINT message,
  25. WPARAM wparam,
  26. LPARAM lparam);
  27. private:
  28. // not defined; no copying allowed
  29. UnattendSplashDialog(const UnattendSplashDialog&);
  30. const UnattendSplashDialog& operator=(const UnattendSplashDialog&);
  31. };
  32. #endif // UNATTENDSPLASHDIALOG_HPP_INCLUDED