// Step2.h : header file
//
#define _STEP2_

/////////////////////////////////////////////////////////////////////////////
// CStep2 dialog
class CStep2 : public CDialog
{
// Construction
public:
	CStep2(CWnd* pParent = NULL);   // standard constructor
	int OpenError();
	int WriteError();
	int ReadError();
	int ProtocolError(int i);

// Dialog Data
	//{{AFX_DATA(CStep2)
	enum { IDD = IDD_STEP2 };
	CStatic	m_State;
	CButton	m_Ok;
	CProgressCtrl	m_Progress;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CStep2)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HANDLE h_thread;

	// Generated message map functions
	//{{AFX_MSG(CStep2)
	virtual BOOL OnInitDialog();
	afx_msg void OnDestroy();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
