github publish

This commit is contained in:
Ondrej Novak 2025-01-24 18:27:22 +01:00
commit 506e23bf32
542 changed files with 120675 additions and 0 deletions

41
DDLReader/DlgProgress.cpp Normal file
View 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;
}