Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
801 B

4 years ago
  1. // ErrorDlg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CErrorDlg dialog
  5. class CErrorDlg : public CDialog
  6. {
  7. // Construction
  8. public:
  9. CErrorDlg(CWnd* pParent = NULL); // standard constructor
  10. CErrorDlg(CString& csError, CWnd* pParent = NULL);
  11. // Dialog Data
  12. //{{AFX_DATA(CErrorDlg)
  13. enum { IDD = IDD_ERROR_DIALOG };
  14. CString m_ErrorMessage;
  15. //}}AFX_DATA
  16. // Overrides
  17. // ClassWizard generated virtual function overrides
  18. //{{AFX_VIRTUAL(CErrorDlg)
  19. protected:
  20. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. protected:
  24. // Generated message map functions
  25. //{{AFX_MSG(CErrorDlg)
  26. // NOTE: the ClassWizard will add member functions here
  27. //}}AFX_MSG
  28. DECLARE_MESSAGE_MAP()
  29. };