52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
#if !defined(AFX_DLG_PROCESS_H__7B98744E_BB9C_400D_8B8B_963714019DDD__INCLUDED_)
|
|
#define AFX_DLG_PROCESS_H__7B98744E_BB9C_400D_8B8B_963714019DDD__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// DLG_Process.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// DLG_Process dialog
|
|
|
|
class DLG_Process : public CDialog
|
|
{
|
|
public:
|
|
TCHAR m_szTitle[64];
|
|
|
|
// Construction
|
|
public:
|
|
void SetProcessTitle( TCHAR * pMsg );
|
|
void SetProcess( long lAll , long lCur );
|
|
DLG_Process(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(DLG_Process)
|
|
enum { IDD = IDD_PROCESS };
|
|
CProgressCtrl m_Process;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(DLG_Process)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(DLG_Process)
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_DLG_PROCESS_H__7B98744E_BB9C_400D_8B8B_963714019DDD__INCLUDED_)
|