mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-04 21:50:38 -04:00
28 lines
541 B
C++
28 lines
541 B
C++
#pragma once
|
|
#include "t:\h\atlmfc\include\afxcmn.h"
|
|
#include "t:\h\atlmfc\include\afxwin.h"
|
|
|
|
|
|
// DlgProgress dialog
|
|
|
|
class DlgProgress : public CDialog
|
|
{
|
|
DECLARE_DYNAMIC(DlgProgress)
|
|
|
|
public:
|
|
DlgProgress(CWnd* pParent = NULL); // standard constructor
|
|
virtual ~DlgProgress();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_EXPORTING };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
CProgressCtrl wProgress;
|
|
CStatic wDesc;
|
|
afx_msg void OnBnClickedButton1();
|
|
bool stop;
|
|
};
|