// About.cpp : about box dialog
//

#include "stdafx.h"
#include "ROMDump.h"

#include "About.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
	//{{AFX_DATA_INIT(CAboutDlg)
	//}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAboutDlg)
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
	//{{AFX_MSG_MAP(CAboutDlg)
		// No message handlers
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/*
	{
	}
	{
		CStep1 dlg;
		dlg.Create(IDD_STEP1,m_pMainWnd);
		dlg.ShowWindow(SW_SHOW);
		if (nResponse != IDOK) return FALSE;
		
	}
	{
		CStep2 dlg;
		nResponse = dlg.Create(IDD_STEP2,m_pMainWnd);
		if (nResponse != IDOK) return FALSE;
	}
*/