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.

44 lines
793 B

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORP., 2000
  4. *
  5. * TITLE: Prevpg.h
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: KeisukeT
  10. *
  11. * DATE: 27 Mar, 2000
  12. *
  13. * DESCRIPTION:
  14. * Dummy page for the case user push BACK button in device selection page.
  15. *
  16. *******************************************************************************/
  17. #ifndef _PREVPG_H_
  18. #define _PREVPG_H_
  19. //
  20. // Include
  21. //
  22. #include "wizpage.h"
  23. //
  24. // Class
  25. //
  26. class CPrevSelectPage : public CInstallWizardPage {
  27. PINSTALLER_CONTEXT m_pInstallerContext; // Installer context.
  28. public:
  29. CPrevSelectPage(PINSTALLER_CONTEXT pInstallerContext);
  30. ~CPrevSelectPage() {};
  31. virtual BOOL OnNotify(LPNMHDR lpnmh);
  32. };
  33. #endif // _PREVPG_H_