home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / internet / httpsvr / rootdlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.4 KB  |  53 lines

  1. // RootDlg.cpp : implementation of the CBadRootDlg class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1997-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. #include "httpsvr.h"
  15. #include "RootDlg.h"
  16.  
  17. #ifdef _DEBUG
  18. #define new DEBUG_NEW
  19. #undef THIS_FILE
  20. static char THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CBadRootDlg dialog
  25.  
  26.  
  27. CBadRootDlg::CBadRootDlg(CWnd* pParent /*=NULL*/)
  28.     : CDialog(CBadRootDlg::IDD, pParent)
  29. {
  30.     //{{AFX_DATA_INIT(CBadRootDlg)
  31.     m_strRoot = _T("");
  32.     //}}AFX_DATA_INIT
  33. }
  34.  
  35.  
  36. void CBadRootDlg::DoDataExchange(CDataExchange* pDX)
  37. {
  38.     CDialog::DoDataExchange(pDX);
  39.     //{{AFX_DATA_MAP(CBadRootDlg)
  40.     DDX_Text(pDX, IDC_ROOTDIR, m_strRoot);
  41.     //}}AFX_DATA_MAP
  42. }
  43.  
  44.  
  45. BEGIN_MESSAGE_MAP(CBadRootDlg, CDialog)
  46.     //{{AFX_MSG_MAP(CBadRootDlg)
  47.         // NOTE: the ClassWizard will add message map macros here
  48.     //}}AFX_MSG_MAP
  49. END_MESSAGE_MAP()
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CBadRootDlg message handlers
  53.