home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / mfcatl / mfcatldl.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  51 lines

  1. // MfcAtlDl.h : header file
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMfcAtlDlg dialog
  15.  
  16. class CMfcAtlDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CMfcAtlDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CMfcAtlDlg)
  24.     enum { IDD = IDD_MFCATL_DIALOG };
  25.         // NOTE: the ClassWizard will add data members here
  26.     //}}AFX_DATA
  27.  
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CMfcAtlDlg)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.     HICON m_hIcon;
  37.  
  38.     virtual void PostNcDestroy();
  39.  
  40.     // Generated message map functions
  41.     //{{AFX_MSG(CMfcAtlDlg)
  42.     virtual BOOL OnInitDialog();
  43.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  44.     afx_msg void OnPaint();
  45.     afx_msg HCURSOR OnQueryDragIcon();
  46.     afx_msg void OnClose();
  47.     afx_msg void OnPressClose();
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.