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
498 B
22 lines
498 B
//Copyright (c) 1997-2000 Microsoft Corporation
|
|
#ifndef __FINISH_WIZARD_PAGE_H
|
|
#define __FINISH_WIZARD_PAGE_H
|
|
|
|
#include "pgbase.h"
|
|
|
|
class FinishWizPg : public WizardPage
|
|
{
|
|
public:
|
|
FinishWizPg(LPPROPSHEETPAGE ppsp);
|
|
~FinishWizPg(VOID);
|
|
|
|
private:
|
|
|
|
LRESULT OnInitDialog(HWND hwnd, WPARAM wParam, LPARAM lParam);
|
|
LRESULT OnPSN_SetActive(HWND hwnd, INT idCtl, LPPSHNOTIFY pnmh);
|
|
BOOL OnMsgNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh);
|
|
|
|
};
|
|
|
|
#endif // __FINISH_WIZARD_PAGE_H
|
|
|