home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / WTJ9403.ZIP / WILDASS / SOURCE / ABOUTDLG.H < prev    next >
C/C++ Source or Header  |  1993-08-12  |  573b  |  28 lines

  1. // aboutdlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CAboutDlg dialog
  6.  
  7. class CAboutDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.    CAboutDlg( CWnd* pParent = NULL); // standard constructor
  12.  
  13. // Implementation
  14. protected:
  15.  
  16.    virtual BOOL OnInitDialog();
  17.    virtual void OnOK();
  18.    afx_msg void OnTimer(UINT nIDEvent);
  19.    afx_msg void OnPaint();
  20.    DECLARE_MESSAGE_MAP()
  21.    
  22. private:
  23.    CBitmap  m_arrBmp[7];
  24.    UINT     m_nTimerProc;
  25.    UINT     m_nBitmap;
  26.    CRect    m_rectBitmap;
  27. };
  28.