home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Shareware 35
/
hot35.iso
/
ficheros
/
LC
/
SEE4C10.ZIP
/
MFC_PGM.H
< prev
next >
Wrap
C/C++ Source or Header
|
1998-05-28
|
711b
|
35 lines
// mfc_pgm.h : Declares the class interfaces for the application.
// MFC_PGM is intended as a simple example of the use of
// the Microsoft Foundation Class (MFC) library.
//
#define NROWS 20
// CMainWindow
class CMainWindow : public CFrameWnd
{
public:
CMainWindow();
void PgmExit(void);
void PgmSend(void);
void ShowError(int);
void DisplayChar(int);
void DisplayLine(CString);
protected:
//CWnd * MainWndPtr;
int TheRow;
CString Buffer[NROWS];
afx_msg void OnPaint();
//afx_msg void OnAbout();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
class CTheApp : public CWinApp
{
public:
BOOL InitInstance();
};