AnyServer.cpp
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:4k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. // AnyServer.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "AnyServer.h"
  5. #include "MainFrm.h"
  6. #include "AnyServerDoc.h"
  7. #include "AnyServerView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CAnyServerApp
  15. BEGIN_MESSAGE_MAP(CAnyServerApp, CWinApp)
  16. //{{AFX_MSG_MAP(CAnyServerApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CAnyServerApp construction
  27. CAnyServerApp::CAnyServerApp()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CAnyServerApp object
  34. CAnyServerApp theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CAnyServerApp initialization
  37. BOOL CAnyServerApp::InitInstance()
  38. {
  39. if (!AfxSocketInit())
  40. {
  41. AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  42. return FALSE;
  43. }
  44. AfxEnableControlContainer();
  45. // Standard initialization
  46. // If you are not using these features and wish to reduce the size
  47. //  of your final executable, you should remove from the following
  48. //  the specific initialization routines you do not need.
  49. #ifdef _AFXDLL
  50. Enable3dControls(); // Call this when using MFC in a shared DLL
  51. #else
  52. Enable3dControlsStatic(); // Call this when linking to MFC statically
  53. #endif
  54. // Change the registry key under which our settings are stored.
  55. // TODO: You should modify this string to be something appropriate
  56. // such as the name of your company or organization.
  57. SetRegistryKey(_T("AnyServer"));
  58. LoadStdProfileSettings(0);  // Load standard INI file options (including MRU)
  59. if (GetProfileString("AnyServer","AnyWhere").IsEmpty())
  60. WriteProfileString("AnyServer","AnyWhere","12345678");
  61. // Register the application's document templates.  Document templates
  62. //  serve as the connection between documents, frame windows and views.
  63. CSingleDocTemplate* pDocTemplate;
  64. pDocTemplate = new CSingleDocTemplate(
  65. IDR_MAINFRAME,
  66. RUNTIME_CLASS(CAnyServerDoc),
  67. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  68. RUNTIME_CLASS(CAnyServerView));
  69. AddDocTemplate(pDocTemplate);
  70. // Parse command line for standard shell commands, DDE, file open
  71. CCommandLineInfo cmdInfo;
  72. ParseCommandLine(cmdInfo);
  73. // Dispatch commands specified on the command line
  74. if (!ProcessShellCommand(cmdInfo))
  75. return FALSE;
  76. // The one and only window has been initialized, so show and update it.
  77. m_pMainWnd->ShowWindow(SW_SHOWMINIMIZED);
  78. m_pMainWnd->ShowWindow(SW_HIDE);
  79. m_pMainWnd->UpdateWindow();
  80. return TRUE;
  81. }
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CAboutDlg dialog used for App About
  84. class CAboutDlg : public CDialog
  85. {
  86. public:
  87. CAboutDlg();
  88. // Dialog Data
  89. //{{AFX_DATA(CAboutDlg)
  90. enum { IDD = IDD_ABOUTBOX };
  91. //}}AFX_DATA
  92. // ClassWizard generated virtual function overrides
  93. //{{AFX_VIRTUAL(CAboutDlg)
  94. protected:
  95. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  96. //}}AFX_VIRTUAL
  97. // Implementation
  98. protected:
  99. //{{AFX_MSG(CAboutDlg)
  100. // No message handlers
  101. //}}AFX_MSG
  102. DECLARE_MESSAGE_MAP()
  103. };
  104. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  105. {
  106. //{{AFX_DATA_INIT(CAboutDlg)
  107. //}}AFX_DATA_INIT
  108. }
  109. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  110. {
  111. CDialog::DoDataExchange(pDX);
  112. //{{AFX_DATA_MAP(CAboutDlg)
  113. //}}AFX_DATA_MAP
  114. }
  115. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  116. //{{AFX_MSG_MAP(CAboutDlg)
  117. // No message handlers
  118. //}}AFX_MSG_MAP
  119. END_MESSAGE_MAP()
  120. // App command to run the dialog
  121. void CAnyServerApp::OnAppAbout()
  122. {
  123. CAboutDlg aboutDlg;
  124. aboutDlg.DoModal();
  125. }
  126. /////////////////////////////////////////////////////////////////////////////
  127. // CAnyServerApp message handlers