home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / ttips2 / tooltest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-07  |  1.1 KB  |  44 lines

  1. // tooltest.h : main header file for the TOOLTEST application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9. #include "splash.h"
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTooltestApp:
  13. // See tooltest.cpp for the implementation of this class
  14. //
  15.  
  16. class CTooltestApp : public CWinApp
  17. {
  18. public:
  19.     CTooltestApp();
  20.  
  21. // Overrides
  22.     virtual BOOL InitInstance();
  23. // Added these lines to do the splash screen stuff
  24. // *********************************    
  25.        virtual BOOL OnIdle(LONG lCount);
  26.     virtual BOOL PreTranslateMessage(MSG* pMsg);
  27.  
  28.     DWORD m_dwSplashTime;
  29.     CSplash m_splash;
  30. // *********************************    
  31.     
  32. // Implementation
  33.  
  34.     //{{AFX_MSG(CTooltestApp)
  35.     afx_msg void OnAppAbout();
  36.         // NOTE - the ClassWizard will add and remove member functions here.
  37.         //    DO NOT EDIT what you see in these blocks of generated code !
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.