proj.h
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:1k
源码类别:

远程控制编程

开发平台:

C/C++

  1. // Proj.h : main header file for the PROJ application
  2. //
  3. #ifndef __AFXWIN_H__
  4. #error include 'stdafx.h' before including this file for PCH
  5. #endif
  6. #include "resource.h"       // main symbols
  7. #include <afxtempl.h>
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CProjApp:
  10. // See Proj.cpp for the implementation of this class
  11. //
  12. class CProjApp : public CWinApp
  13. {
  14. public:
  15. virtual BOOL PreTranslateMessage(MSG* pMsg);
  16. CProjApp();
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CProjApp)
  20. public:
  21. virtual BOOL InitInstance();
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. //{{AFX_MSG(CProjApp)
  25. afx_msg void OnAppAbout();
  26. // NOTE - the ClassWizard will add and remove member functions here.
  27. //    DO NOT EDIT what you see in these blocks of generated code !
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. };
  31. /////////////////////////////////////////////////////////////////////////////