1234567891011121314151617181920212223242526272829303132 |
- #pragma once
- #ifndef __AFXWIN_H__
- #error "在包含此文件之前包含“stdafx.h”以生成 PCH 文件"
- #endif
- #include "resource.h"
- class CClientTestApp : public CWinAppEx
- {
- public:
- CClientTestApp();
- public:
- virtual BOOL InitInstance();
- DECLARE_MESSAGE_MAP()
- };
- extern CClientTestApp theApp;
|