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.
45 lines
859 B
45 lines
859 B
/*****************************************************************************
|
|
*
|
|
* (C) COPYRIGHT MICROSOFT CORPORATION, 2000
|
|
*
|
|
* TITLE: end.h
|
|
*
|
|
* VERSION: 1.0
|
|
*
|
|
* AUTHOR: RickTu
|
|
*
|
|
* DATE: 11/7/00
|
|
*
|
|
* DESCRIPTION: End page class definition
|
|
*
|
|
*****************************************************************************/
|
|
|
|
|
|
#ifndef _PRINT_PHOTOS_WIZARD_END_PAGE_DLG_PROC_
|
|
#define _PRINT_PHOTOS_WIZARD_END_PAGE_DLG_PROC_
|
|
|
|
class CEndPage
|
|
{
|
|
public:
|
|
CEndPage( CWizardInfoBlob * pBlob );
|
|
~CEndPage();
|
|
|
|
INT_PTR DoHandleMessage( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
|
|
|
|
private:
|
|
|
|
// window message handlers
|
|
LRESULT _OnInitDialog();
|
|
VOID _OnWizFinish();
|
|
|
|
|
|
private:
|
|
CWizardInfoBlob * _pWizInfo;
|
|
HWND _hDlg;
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|