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