MobileClient.cpp
上传用户:hnzycx
上传日期:2022-08-09
资源大小:12567k
文件大小:1k
- // MobileClient.cpp : 定义应用程序的类行为。
- //
- #include "stdafx.h"
- #include "MobileClient.h"
- #include "MobileClientDlg.h"
- #include "LogOn.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #endif
- // CMobileClientApp
- BEGIN_MESSAGE_MAP(CMobileClientApp, CWinApp)
- END_MESSAGE_MAP()
- // CMobileClientApp 构造
- CMobileClientApp::CMobileClientApp()
- : CWinApp()
- {
- plg=0;
- }
- // 唯一的一个 CMobileClientApp 对象
- CMobileClientApp theApp;
- // CMobileClientApp 初始化
- BOOL CMobileClientApp::InitInstance()
- {
-
- SHInitExtraControls();
- if (!AfxSocketInit())
- {
- AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
- return FALSE;
- }
-
- SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
- CLogOn dlg;
- if(dlg.DoModal()==IDOK)
- {
- CMobileClientDlg dlg;
- m_pMainWnd = &dlg;
- dlg.DoModal();
- }
- return FALSE;
- }