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,28 @@
#pragma once
#include "Resource.h" // 主符号
//////////////////////////////////////////////////////////////////////////////////
//程序对象
class CLogonServerApp : public CWinApp
{
//函数定义
public:
//构造函数
CLogonServerApp();
//重载函数
public:
//启动函数
virtual BOOL InitInstance();
DECLARE_MESSAGE_MAP()
};
//////////////////////////////////////////////////////////////////////////////////
//程序对象
extern CLogonServerApp theApp;
//////////////////////////////////////////////////////////////////////////////////