WebGet.h
上传用户:qhonly
上传日期:2013-06-10
资源大小:487k
文件大小:0k
源码类别:

界面编程

开发平台:

Visual C++

  1. // WebGet.h : WebGet 应用程序的主头文件
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7. #include "resource.h"       // 主符号
  8. class CWebGetApp : public CWinApp
  9. {
  10. public:
  11. CWebGetApp();
  12. protected:
  13. // 重写
  14. public:
  15. virtual BOOL InitInstance();
  16. // 实现
  17. public:
  18. afx_msg void OnAppAbout();
  19. DECLARE_MESSAGE_MAP()
  20. virtual int ExitInstance();
  21. };
  22. extern CWebGetApp theApp;