MobileClient.cpp
上传用户:hnzycx
上传日期:2022-08-09
资源大小:12567k
文件大小:1k
开发平台:

Visual C++

  1. // MobileClient.cpp : 定义应用程序的类行为。
  2. //
  3. #include "stdafx.h"
  4. #include "MobileClient.h"
  5. #include "MobileClientDlg.h"
  6. #include "LogOn.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #endif
  10. // CMobileClientApp
  11. BEGIN_MESSAGE_MAP(CMobileClientApp, CWinApp)
  12. END_MESSAGE_MAP()
  13. // CMobileClientApp 构造
  14. CMobileClientApp::CMobileClientApp()
  15. : CWinApp()
  16. {
  17. plg=0;
  18. }
  19. // 唯一的一个 CMobileClientApp 对象
  20. CMobileClientApp theApp;
  21. // CMobileClientApp 初始化
  22. BOOL CMobileClientApp::InitInstance()
  23. {
  24.    
  25.     SHInitExtraControls();
  26. if (!AfxSocketInit())
  27. {
  28. AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  29. return FALSE;
  30. }
  31. SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
  32. CLogOn dlg;
  33. if(dlg.DoModal()==IDOK)
  34. {
  35.         CMobileClientDlg dlg;
  36.     m_pMainWnd = &dlg;
  37.     dlg.DoModal();
  38. }
  39. return FALSE;
  40. }