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
446 B
21 lines
446 B
//Copyright (c) 1997-2000 Microsoft Corporation
|
|
#ifndef _PGNWELCOME_H
|
|
#define _PGNWELCOME_H
|
|
|
|
#include "pgbase.h"
|
|
#include "Select.h"
|
|
|
|
class CWizWelcomePg : public WizardPage
|
|
{
|
|
public:
|
|
CWizWelcomePg(LPPROPSHEETPAGE ppsp);
|
|
~CWizWelcomePg(VOID);
|
|
|
|
protected:
|
|
LRESULT OnCommand(HWND hwnd, WPARAM wParam, LPARAM lParam);
|
|
LRESULT OnPSN_WizNext(HWND hwnd, INT idCtl, LPPSHNOTIFY pnmh);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif /*_PGNWELCOME_H*/
|