NOROOT.CPP
上传用户:btxinjin
上传日期:2007-01-04
资源大小:83k
文件大小:1k
源码类别:

Web服务器

开发平台:

Visual C++

  1. // NoRoot.cpp : implementation file
  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. #include "stdafx.h"
  13. #include "httpsvr.h"
  14. #include "NoRoot.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CNoRootDlg dialog
  22. CNoRootDlg::CNoRootDlg(CWnd* pParent /*=NULL*/)
  23. : CDialog(CNoRootDlg::IDD, pParent)
  24. {
  25. //{{AFX_DATA_INIT(CNoRootDlg)
  26. m_strRoot = _T("");
  27. //}}AFX_DATA_INIT
  28. }
  29. void CNoRootDlg::DoDataExchange(CDataExchange* pDX)
  30. {
  31. CDialog::DoDataExchange(pDX);
  32. //{{AFX_DATA_MAP(CNoRootDlg)
  33. DDX_Text(pDX, IDC_ROOTDIR, m_strRoot);
  34. //}}AFX_DATA_MAP
  35. }
  36. BEGIN_MESSAGE_MAP(CNoRootDlg, CDialog)
  37. //{{AFX_MSG_MAP(CNoRootDlg)
  38. // NOTE: the ClassWizard will add message map macros here
  39. //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CNoRootDlg message handlers