This commit is contained in:
cyw
2026-02-13 14:34:15 +08:00
parent 6ed1953e24
commit f36e3f9df2
5206 changed files with 573757 additions and 16 deletions

View File

@@ -0,0 +1,43 @@
#include "Stdafx.h"
#include "CorrespondServer.h"
#include "CorrespondServerDlg.h"
//////////////////////////////////////////////////////////////////////////////////
//程序对象
CCorrespondServerApp theApp;
//////////////////////////////////////////////////////////////////////////////////
BEGIN_MESSAGE_MAP(CCorrespondServerApp, CWinApp)
END_MESSAGE_MAP()
//////////////////////////////////////////////////////////////////////////////////
//构造函数
CCorrespondServerApp::CCorrespondServerApp()
{
}
//启动函数
BOOL CCorrespondServerApp::InitInstance()
{
__super::InitInstance();
//设置组件
AfxInitRichEdit2();
InitCommonControls();
AfxEnableControlContainer();
//设置注册表
SetRegistryKey(szProduct);
//显示窗口
CCorrespondServerDlg CorrespondServerDlg;
m_pMainWnd=&CorrespondServerDlg;
CorrespondServerDlg.DoModal();
return FALSE;
}
//////////////////////////////////////////////////////////////////////////////////