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.

57 lines
1.1 KiB

  1. // Copyright (c) 2001 Microsoft Corporation
  2. //
  3. // File: AdminPackAndNASPage.h
  4. //
  5. // Synopsis: Declares the AdminPackAndNASPage that
  6. // asks the user if they want to install
  7. // the Admin Pack and Network Attached
  8. // Storage (NAS) admin tools
  9. //
  10. // History: 06/01/2001 JeffJon Created
  11. #ifndef __CYS_ADMINPACKANDNASPAGE_H
  12. #define __CYS_ADMINPACKANDNASPAGE_H
  13. #include "CYSWizardPage.h"
  14. class AdminPackAndNASPage : public CYSWizardPage
  15. {
  16. public:
  17. // Constructor
  18. AdminPackAndNASPage();
  19. // Destructor
  20. virtual
  21. ~AdminPackAndNASPage();
  22. // Dialog overrides
  23. virtual
  24. void
  25. OnInit();
  26. virtual
  27. bool
  28. OnSetActive();
  29. protected:
  30. // CYSWizardPage overrides
  31. virtual
  32. int
  33. Validate();
  34. private:
  35. // not defined: no copying allowed
  36. AdminPackAndNASPage(const AdminPackAndNASPage&);
  37. const AdminPackAndNASPage& operator=(const AdminPackAndNASPage&);
  38. };
  39. #endif // __CYS_ADMINPACKANDNASPAGE_H