diblook.h
上传用户:zbjinju
上传日期:2022-07-30
资源大小:11893k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. // diblook.h : main header file for the DIBLOOK application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #ifndef __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h"           // main symbols
  16. #define WM_DOREALIZE   (WM_USER + 0)
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CDibLookApp:
  19. // See diblook.cpp for the implementation of this class
  20. //
  21. class CDibLookApp : public CWinApp
  22. {
  23. public:
  24. CDibLookApp();
  25. // Overrides
  26. virtual BOOL InitInstance();
  27. // Implementation
  28. //{{AFX_MSG(CDibLookApp)
  29. afx_msg void OnAppAbout();
  30. afx_msg void OnFileNew();
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. /////////////////////////////////////////////////////////////////////////////