home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / MFC / SAMPLES / SUPERPAD / SUPERPAD.H_ / SUPERPAD.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  1.2 KB  |  47 lines

  1. // superpad.h : main header file for the SuperPad application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 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 Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14.  
  15. #include "resource.h"
  16. #include "waitcur.h"
  17. #include "pageset.h"
  18. #include "aboutbox.h"
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CSuperPadApp
  22.  
  23. class CSuperPadApp : public CWinApp
  24. {
  25. public:
  26.     CSuperPadApp();
  27.  
  28. private:
  29.     virtual BOOL InitInstance();
  30.     virtual int ExitInstance();
  31.     virtual BOOL OnIdle(LONG lCount);
  32.     virtual BOOL PreTranslateMessage(MSG* pMsg);
  33.  
  34.     DWORD m_dwSplashTime;
  35.     CSplashWnd m_splash;
  36.  
  37.     //{{AFX_MSG(CSuperPadApp)
  38.     afx_msg void OnAppAbout();
  39.     afx_msg void OnPageSetup();
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. extern CPageSetupDlg dlgPageSetup;
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.