gates_of_skeldal/DDLReader/DlgProgress.h
2025-01-24 18:27:22 +01:00

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;
};