mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-05 05:00:06 -04:00
46 lines
960 B
C++
46 lines
960 B
C++
// MsgDlg.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "d3launch.h"
|
|
#include "MsgDlg.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMsgDlg dialog
|
|
|
|
|
|
CMsgDlg::CMsgDlg(CWnd* pParent /*=NULL*/)
|
|
: CDialog(CMsgDlg::IDD, pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(CMsgDlg)
|
|
m_ScanningMsg = _T("");
|
|
m_WaitMsg = _T("");
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
|
|
void CMsgDlg::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CMsgDlg)
|
|
DDX_Text(pDX, IDC_SCANNING_TEXT, m_ScanningMsg);
|
|
DDX_Text(pDX, IDC_WAIT_TEXT, m_WaitMsg);
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CMsgDlg, CDialog)
|
|
//{{AFX_MSG_MAP(CMsgDlg)
|
|
// NOTE: the ClassWizard will add message map macros here
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMsgDlg message handlers
|