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

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