RecvProgressDlg.h
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
- #pragma once
- #include "afxcmn.h"
- // CRecvProgressDlg dialog
- class CRecvProgressDlg : public CDialog
- {
- DECLARE_DYNAMIC(CRecvProgressDlg)
- public:
- CRecvProgressDlg(CWnd* pParent = NULL); // standard constructor
- virtual ~CRecvProgressDlg();
- // Dialog Data
- enum { IDD = IDD_DLG_PROGRESS };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- DECLARE_MESSAGE_MAP()
- public:
- CProgressCtrl m_Progress;
- afx_msg void OnDestroy();
- virtual BOOL OnInitDialog();
- void UpdateProgress(const int nProgress);
- };