home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Power Pack / Visual_Basic4_Power_Pack.bin / vb4files / ilib_vb / imview.h_ / imview.h
Encoding:
C/C++ Source or Header  |  1996-11-20  |  658 b   |  33 lines

  1.  
  2. #ifndef __AFXWIN_H__
  3.     #error include 'stdafx.h' before including this file for PCH
  4. #endif
  5.  
  6. #include "resource.h"           // main symbols
  7.  
  8. #define WM_DOREALIZE   (WM_USER + 0)
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CImViewApp:
  12. // See ImView.cpp for the implementation of this class
  13. //
  14.  
  15. class CImViewApp : public CWinApp
  16. {
  17. public:
  18.     CImViewApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.  
  23. // Implementation
  24.  
  25.     //{{AFX_MSG(CImViewApp)
  26.     afx_msg void OnAppAbout();
  27.     //}}AFX_MSG
  28.     DECLARE_MESSAGE_MAP()
  29. };
  30.  
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33.