MMSServer.cpp
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:3k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. //
  20. #include "stdafx.h"
  21. #include "MMSServer.h"
  22. #include "MMSServerDlg.h"
  23. #pragma comment (lib, "strmiids.lib")
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CMMSServerApp
  31. BEGIN_MESSAGE_MAP(CMMSServerApp, CWinApp)
  32. //{{AFX_MSG_MAP(CMMSServerApp)
  33. // NOTE - the ClassWizard will add and remove mapping macros here.
  34. //    DO NOT EDIT what you see in these blocks of generated code!
  35. //}}AFX_MSG
  36. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CMMSServerApp construction
  40. CMMSServerApp::CMMSServerApp()
  41. {
  42. // TODO: add construction code here,
  43. // Place all significant initialization in InitInstance
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // The one and only CMMSServerApp object
  47. CMMSServerApp theApp;
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CMMSServerApp initialization
  50. BOOL CMMSServerApp::InitInstance()
  51. {
  52. // Standard initialization
  53. // If you are not using these features and wish to reduce the size
  54. //  of your final executable, you should remove from the following
  55. //  the specific initialization routines you do not need.
  56. /*
  57. HANDLE hEvent = CreateEvent(NULL, FALSE, FALSE, "MMSServer");
  58. if(GetLastError() == ERROR_ALREADY_EXISTS)
  59. {
  60. AfxMessageBox("你已经有一个MMSServer在运行了! ):");
  61. return FALSE;
  62. }
  63. */
  64. #ifdef _AFXDLL
  65. Enable3dControls(); // Call this when using MFC in a shared DLL
  66. #else
  67. Enable3dControlsStatic(); // Call this when linking to MFC statically
  68. #endif
  69. CMMSServerDlg dlg;
  70. m_pMainWnd = &dlg;
  71. int nResponse = dlg.DoModal();
  72. if (nResponse == IDOK)
  73. {
  74. // TODO: Place code here to handle when the dialog is
  75. //  dismissed with OK
  76. }
  77. else if (nResponse == IDCANCEL)
  78. {
  79. // TODO: Place code here to handle when the dialog is
  80. //  dismissed with Cancel
  81. }
  82. //CloseHandle(hEvent);
  83. // Since the dialog has been closed, return FALSE so that we exit the
  84. //  application, rather than start the application's message pump.
  85. return FALSE;
  86. }