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.

22 lines
476 B

  1. //Copyright (c) 1997-2000 Microsoft Corporation
  2. #ifndef __FINISH_WIZARD_PAGE_H
  3. #define __FINISH_WIZARD_PAGE_H
  4. #include "pgbase.h"
  5. class FinishWizPg : public WizardPage
  6. {
  7. public:
  8. FinishWizPg(LPPROPSHEETPAGE ppsp);
  9. ~FinishWizPg(VOID);
  10. private:
  11. LRESULT OnInitDialog(HWND hwnd, WPARAM wParam, LPARAM lParam);
  12. LRESULT OnPSN_SetActive(HWND hwnd, INT idCtl, LPPSHNOTIFY pnmh);
  13. BOOL OnMsgNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh);
  14. };
  15. #endif // __FINISH_WIZARD_PAGE_H