home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HomeWare 14
/
HOMEWARE14.bin
/
windows
/
graphs
/
multicon.arj
/
MULTICON.H
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-08
|
2KB
|
78 lines
//*************************************************************
// File name: MULTICON.H
//
// Description:
// Declares the interface for the CMulticonApp class
//
// History: Date Author Comment
// 3/7/94 FJB Created
//
// Written by Microsoft Product Support Services, Windows Developer Support
// Copyright (c) 1994 Microsoft Corporation. All rights reserved.
//*************************************************************
//*************************************************************
// Class:
// CMulticonApp
//
// Description:
// AppWizard generated CWinApp derived class.
//
// Derived from:
// CWinApp
//
// Data Members:
//
// Member Functions:
// CMulticonApp : Constructor
// ~CMulticonApp : Destructor
//
// Implementation:
// InitInstance : AppWizard generated.
// OnIdle : Enumerates all open views and calls
// InvalidateRect on each. If the view's frame
// is iconic, calls InvalidateRect on the frame.
//
// Message Handlers:
// OnAppAbout : Displays the 'Help About' dialog.
//
//
//
// History: Date Author Comment
// 3/7/94 FJB Created
//
//*************************************************************
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
/////////////////////////////////////////////////////////////////////////////
// CMulticonApp:
// See multicon.cpp for the implementation of this class
//
class CMulticonApp : public CWinApp
{
public:
CMulticonApp();
// Overrides
virtual BOOL InitInstance();
virtual BOOL OnIdle(LONG lCount);
// Implementation
//{{AFX_MSG(CMulticonApp)
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()
};
/////////////////////////////////////////////////////////////////////////////