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.

60 lines
1014 B

  1. // Copyright (c) 2001 Microsoft Corporation
  2. //
  3. // File: RemoteDesktopPage.h
  4. //
  5. // Synopsis: Declares the Remote Desktop page
  6. // for the CYS Wizard
  7. //
  8. // History: 12/18/2001 JeffJon Created
  9. #ifndef __CYS_REMOTEDESKTOPPAGE_H
  10. #define __CYS_REMOTEDESKTOPPAGE_H
  11. #include "CYSWizardPage.h"
  12. class RemoteDesktopPage : public CYSWizardPage
  13. {
  14. public:
  15. // Constructor
  16. RemoteDesktopPage();
  17. // Destructor
  18. virtual
  19. ~RemoteDesktopPage();
  20. // Dialog overrides
  21. virtual
  22. void
  23. OnInit();
  24. // PropertyPage overrides
  25. virtual
  26. bool
  27. OnSetActive();
  28. protected:
  29. // CYSWizardPage overrides
  30. virtual
  31. int
  32. Validate();
  33. private:
  34. // not defined: no copying allowed
  35. RemoteDesktopPage(const RemoteDesktopPage&);
  36. const RemoteDesktopPage& operator=(const RemoteDesktopPage&);
  37. };
  38. #endif // __CYS_REMOTEDESKTOPPAGE_H