mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-15 02:36:40 -04:00
github publish
This commit is contained in:
commit
506e23bf32
542 changed files with 120675 additions and 0 deletions
28
DDLReader/DlgProgress.h
Normal file
28
DDLReader/DlgProgress.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
#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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue