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.
 
 
 
 
 
 

39 lines
927 B

// messaged.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CMessageDlg dialog
class CMessageDlg : public CDialog
{
// Construction
public:
CMessageDlg(CString &strMsg, CWnd* pParent = NULL); // standard constructor
BOOL Create();
// Dialog Data
//{{AFX_DATA(CMessageDlg)
enum { IDD = IDD_MESSAGE_NTS };
CString m_Message;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMessageDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CMessageDlg)
virtual BOOL OnInitDialog();
virtual void OnOK();
virtual void OnCancel();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};