FTPD.CPP
上传用户:shengde
上传日期:2007-02-26
资源大小:117k
文件大小:1k
源码类别:

Ftp服务器

开发平台:

Visual C++

  1. // ftpd.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ftpd.h"
  5. #include "ftpdDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CFtpdApp
  13. BEGIN_MESSAGE_MAP(CFtpdApp, CWinApp)
  14. //{{AFX_MSG_MAP(CFtpdApp)
  15. //}}AFX_MSG
  16. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  17. END_MESSAGE_MAP()
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CFtpdApp construction
  20. CFtpdApp::CFtpdApp()
  21. {
  22. }
  23. /////////////////////////////////////////////////////////////////////////////
  24. // The one and only CFtpdApp object
  25. CFtpdApp theApp;
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CFtpdApp initialization
  28. BOOL CFtpdApp::InitInstance()
  29. {
  30. if (!AfxSocketInit())
  31. {
  32. AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  33. return FALSE;
  34. }
  35. // Standard initialization
  36. #ifdef _AFXDLL
  37. Enable3dControls(); // Call this when using MFC in a shared DLL
  38. #else
  39. Enable3dControlsStatic(); // Call this when linking to MFC statically
  40. #endif
  41. CFtpdDlg dlg;
  42. m_pMainWnd = &dlg;
  43. int nResponse = dlg.DoModal();
  44. if (nResponse == IDOK)
  45. {
  46. }
  47. else if (nResponse == IDCANCEL)
  48. {
  49. }
  50. // Since the dialog has been closed, return FALSE so that we exit the
  51. //  application, rather than start the application's message pump.
  52. return FALSE;
  53. }