29 lines
553 B
C++
29 lines
553 B
C++
#pragma once
|
|
|
|
#include "Resource.h" // 主符号
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//程序对象
|
|
class CCorrespondServerApp : public CWinApp
|
|
{
|
|
//函数定义
|
|
public:
|
|
//构造函数
|
|
CCorrespondServerApp();
|
|
|
|
//重载函数
|
|
public:
|
|
//启动函数
|
|
virtual BOOL InitInstance();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//程序对象
|
|
extern CCorrespondServerApp theApp;
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|