home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / windows / graphs / multicon.arj / MULTICON.H < prev    next >
C/C++ Source or Header  |  1994-03-08  |  2KB  |  78 lines

  1. //*************************************************************
  2. //  File name: MULTICON.H
  3. //
  4. //  Description:
  5. //     Declares the interface for the CMulticonApp class
  6. //
  7. //  History:    Date       Author     Comment
  8. //              3/7/94     FJB        Created
  9. //
  10. // Written by Microsoft Product Support Services, Windows Developer Support
  11. // Copyright (c) 1994 Microsoft Corporation. All rights reserved.
  12. //*************************************************************
  13.  
  14. //*************************************************************
  15. //  Class:
  16. //      CMulticonApp 
  17. //
  18. //  Description:
  19. //      AppWizard generated CWinApp derived class.
  20. //
  21. //  Derived from:
  22. //      CWinApp
  23. //
  24. //  Data Members: 
  25. //
  26. //  Member Functions:
  27. //      CMulticonApp      : Constructor
  28. //     ~CMulticonApp      : Destructor
  29. //  
  30. //    Implementation:
  31. //      InitInstance      : AppWizard generated.
  32. //      OnIdle            : Enumerates all open views and calls 
  33. //                          InvalidateRect on each.  If the view's frame
  34. //                          is iconic, calls InvalidateRect on the frame.
  35. //
  36. //    Message Handlers:
  37. //      OnAppAbout        : Displays the 'Help About' dialog.
  38. //
  39. //      
  40. //
  41. //  History:    Date       Author     Comment
  42. //              3/7/94     FJB        Created
  43. //
  44. //*************************************************************  
  45.  
  46. #ifndef __AFXWIN_H__
  47.    #error include 'stdafx.h' before including this file for PCH
  48. #endif
  49.  
  50. #include "resource.h"       // main symbols
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CMulticonApp:
  54. // See multicon.cpp for the implementation of this class
  55. //
  56.  
  57. class CMulticonApp : public CWinApp
  58. {
  59. public:
  60.    CMulticonApp();
  61.  
  62. // Overrides
  63.    virtual BOOL InitInstance();
  64.    virtual BOOL OnIdle(LONG lCount);
  65.  
  66. // Implementation
  67.  
  68.    //{{AFX_MSG(CMulticonApp)
  69.    afx_msg void OnAppAbout();
  70.       // NOTE - the ClassWizard will add and remove member functions here.
  71.       //    DO NOT EDIT what you see in these blocks of generated code !
  72.    //}}AFX_MSG
  73.    DECLARE_MESSAGE_MAP()
  74. };
  75.  
  76.  
  77. /////////////////////////////////////////////////////////////////////////////
  78.