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.
 
 
 
 
 
 

40 lines
627 B

#pragma once
class CImportFinishPage : public CPropertyPageImpl<CImportFinishPage>
{
typedef CPropertyPageImpl<CImportFinishPage> BaseClass;
public:
enum{ IDD = IDD_WPIMP_FINISH };
BEGIN_MSG_MAP(CImportFinishPage)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
CHAIN_MSG_MAP(BaseClass)
END_MSG_MAP()
CImportFinishPage( CWizardSheet* pTheSheet ) :
m_pTheSheet( pTheSheet )
{
m_psp.dwFlags |= PSP_HIDEHEADER;
}
LRESULT OnInitDialog( UINT, WPARAM, LPARAM, BOOL& );
BOOL OnSetActive();
private:
CWizardSheet* m_pTheSheet;
};