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 CExportFinishPage : public CPropertyPageImpl<CExportFinishPage>
{
typedef CPropertyPageImpl<CExportFinishPage> BaseClass;
public:
enum{ IDD = IDD_WPEXP_FINISH };
BEGIN_MSG_MAP(CExportFinishPage)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
CHAIN_MSG_MAP(BaseClass)
END_MSG_MAP()
CExportFinishPage( CWizardSheet* pTheSheet ) :
m_pTheSheet( pTheSheet )
{
m_psp.dwFlags |= PSP_HIDEHEADER;
}
LRESULT OnInitDialog( UINT, WPARAM, LPARAM, BOOL& );
BOOL OnSetActive();
private:
CWizardSheet* m_pTheSheet;
};