home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / dlgcbr32 / aboutdlg.cpp next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.3 KB  |  49 lines

  1. // Aboutdlg.cpp : Defines the class behaviors for the about dialog.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14.  
  15. #include "resource.h"
  16. #include "aboutdlg.h"
  17.  
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CAboutDlg dialog
  26.  
  27.  
  28. CAboutDlg::CAboutDlg(CWnd* pParent /*=NULL*/)
  29.     : CDialog(CAboutDlg::IDD, pParent)
  30. {
  31.     //{{AFX_DATA_INIT(CAboutDlg)
  32.     //}}AFX_DATA_INIT
  33. }
  34.  
  35.  
  36. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  37. {
  38.     CDialog::DoDataExchange(pDX);
  39.     //{{AFX_DATA_MAP(CAboutDlg)
  40.     //}}AFX_DATA_MAP
  41. }
  42.  
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44.     //{{AFX_MSG_MAP(CAboutDlg)
  45.         // NOTE - the ClassWizard will add and remove mapping macros here.
  46.         //    DO NOT EDIT what you see in these blocks of generated code!
  47.     //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49.