MyDlgBar.h
上传用户:chenhai826
上传日期:2007-04-11
资源大小:72k
文件大小:0k
源码类别:

破解

开发平台:

Visual C++

  1. #if !defined __MY_DLG_BAR__
  2. #define __MY_DLG_BAR__
  3. class CMyDlgBar : public CDialogBar
  4. {
  5. BYTE m_Speed[100];
  6. int m_Pos;
  7. UINT m_Timer;
  8. void DrawWave(CDC *pDC);
  9. DECLARE_DYNCREATE(CMyDlgBar)
  10. public:
  11. void Add(void);
  12. CMyDlgBar();
  13. virtual ~CMyDlgBar();
  14. protected:
  15. afx_msg void OnPaint();
  16. afx_msg void OnTimer(UINT nIDEvent);
  17. afx_msg void OnCreate();
  18. afx_msg void OnClose();
  19. DECLARE_MESSAGE_MAP()
  20. };
  21. #endif