home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / LC / SEE4C10.ZIP / MFC_PGM.H < prev    next >
C/C++ Source or Header  |  1998-05-28  |  711b  |  35 lines

  1. // mfc_pgm.h : Declares the class interfaces for the application.
  2. //             MFC_PGM is intended as a simple example of the use of
  3. //             the Microsoft Foundation Class (MFC) library.
  4. //
  5.  
  6. #define NROWS 20
  7.  
  8. // CMainWindow
  9.  
  10. class CMainWindow : public CFrameWnd
  11. {
  12.  public:
  13.    CMainWindow();
  14.    void PgmExit(void);
  15.    void PgmSend(void);
  16.    void ShowError(int);
  17.    void DisplayChar(int);
  18.    void DisplayLine(CString);   
  19.  protected:
  20.    //CWnd * MainWndPtr;
  21.    int  TheRow;
  22.    CString Buffer[NROWS];
  23.    afx_msg void OnPaint();
  24.    //afx_msg void OnAbout();
  25.    //}}AFX_MSG
  26.    DECLARE_MESSAGE_MAP()
  27. };
  28.  
  29. class CTheApp : public CWinApp
  30. {
  31.  public:
  32.    BOOL InitInstance();
  33. };
  34.  
  35.