home *** CD-ROM | disk | FTP | other *** search
- // tooltest.h : main header file for the TOOLTEST application
- //
-
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
-
- #include "resource.h" // main symbols
- #include "splash.h"
-
- /////////////////////////////////////////////////////////////////////////////
- // CTooltestApp:
- // See tooltest.cpp for the implementation of this class
- //
-
- class CTooltestApp : public CWinApp
- {
- public:
- CTooltestApp();
-
- // Overrides
- virtual BOOL InitInstance();
- // Added these lines to do the splash screen stuff
- // *********************************
- virtual BOOL OnIdle(LONG lCount);
- virtual BOOL PreTranslateMessage(MSG* pMsg);
-
- DWORD m_dwSplashTime;
- CSplash m_splash;
- // *********************************
-
- // Implementation
-
- //{{AFX_MSG(CTooltestApp)
- afx_msg void OnAppAbout();
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
-
- /////////////////////////////////////////////////////////////////////////////
-