mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-07 07:00:35 -04:00
github publish
This commit is contained in:
commit
506e23bf32
542 changed files with 120675 additions and 0 deletions
41
DDLReader/DlgProgress.cpp
Normal file
41
DDLReader/DlgProgress.cpp
Normal file
|
@ -0,0 +1,41 @@
|
|||
// DlgProgress.cpp : implementation file
|
||||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "DDLReader.h"
|
||||
#include "DlgProgress.h"
|
||||
#include ".\dlgprogress.h"
|
||||
|
||||
|
||||
// DlgProgress dialog
|
||||
|
||||
IMPLEMENT_DYNAMIC(DlgProgress, CDialog)
|
||||
DlgProgress::DlgProgress(CWnd* pParent /*=NULL*/)
|
||||
: CDialog(DlgProgress::IDD, pParent)
|
||||
{
|
||||
stop=false;
|
||||
}
|
||||
|
||||
DlgProgress::~DlgProgress()
|
||||
{
|
||||
}
|
||||
|
||||
void DlgProgress::DoDataExchange(CDataExchange* pDX)
|
||||
{
|
||||
CDialog::DoDataExchange(pDX);
|
||||
DDX_Control(pDX, IDC_PROGRESS, wProgress);
|
||||
DDX_Control(pDX, IDC_NAME, wDesc);
|
||||
}
|
||||
|
||||
|
||||
BEGIN_MESSAGE_MAP(DlgProgress, CDialog)
|
||||
ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
|
||||
// DlgProgress message handlers
|
||||
|
||||
void DlgProgress::OnBnClickedButton1()
|
||||
{
|
||||
stop=true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue