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.

51 lines
976 B

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORP., 2000
  4. *
  5. * TITLE: Finalpg.h
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: KeisukeT
  10. *
  11. * DATE: 27 Mar, 2000
  12. *
  13. * DESCRIPTION:
  14. * Header file for final page of WIA class installer.
  15. *
  16. *******************************************************************************/
  17. #ifndef _FINALPG_H_
  18. #define _FINALPG_H_
  19. //
  20. // Include
  21. //
  22. #include "wizpage.h"
  23. #include "device.h"
  24. //
  25. // Typedef
  26. //
  27. typedef BOOL (CALLBACK FAR * INSTALLSELECTEDDRIVER)(HWND hwndParent, HDEVINFO hDeviceInfo, LPCWSTR DisplayName, BOOL Backup, PDWORD pReboot);
  28. //
  29. // Class
  30. //
  31. class CInstallPage : public CInstallWizardPage {
  32. PINSTALLER_CONTEXT m_pInstallerContext; // Installer context.
  33. public:
  34. CInstallPage(PINSTALLER_CONTEXT pInstallerContext);
  35. ~CInstallPage() {}
  36. virtual BOOL OnInit();
  37. virtual BOOL OnNotify(LPNMHDR lpnmh);
  38. };
  39. #endif // _FINALPG_H_