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.

51 lines
846 B

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORP., 2000
  4. *
  5. * TITLE: Firstpg.h
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: KeisukeT
  10. *
  11. * DATE: 27 Mar, 2000
  12. *
  13. * DESCRIPTION:
  14. * First page of WIA class installer.
  15. *
  16. *******************************************************************************/
  17. #ifndef _FIRSTPG_H_
  18. #define _FIRSTPG_H_
  19. //
  20. // Include
  21. //
  22. #include "wizpage.h"
  23. //
  24. // Extern
  25. //
  26. extern HINSTANCE g_hDllInstance;
  27. //
  28. // Class
  29. //
  30. class CFirstPage : public CInstallWizardPage
  31. {
  32. BOOL m_bShowThisPage;
  33. public:
  34. CFirstPage(PINSTALLER_CONTEXT pInstallerContext);
  35. ~CFirstPage() {}
  36. virtual BOOL OnInit();
  37. virtual BOOL OnNotify(LPNMHDR lpnmh);
  38. };
  39. #endif // _FIRSTPG_H_