mirror of https://github.com/tongzx/nt5src
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.
21 lines
400 B
21 lines
400 B
//Copyright (c) 1997-2000 Microsoft Corporation
|
|
#ifndef _INC_PGWIZOPT_H
|
|
#define _INC_PGWIZOPT_H
|
|
|
|
#include "pgbase.h"
|
|
|
|
class CWizardOptionsPg : public WizardPage
|
|
{
|
|
public:
|
|
CWizardOptionsPg(LPPROPSHEETPAGE ppsp);
|
|
~CWizardOptionsPg(VOID);
|
|
|
|
protected:
|
|
BOOL AdjustWizPageOrder();
|
|
LRESULT OnCommand(HWND hwnd, WPARAM wParam, LPARAM lParam);
|
|
private:
|
|
BOOL restoreOpt;
|
|
};
|
|
|
|
#endif // _INC_PGWIZOPT_H
|
|
|