AVIPlayerDlg.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #if !defined(AFX_AVIPLAYERDLG_H__206A2874_860C_4723_9968_D6E748F572A0__INCLUDED_)
  2. #define AFX_AVIPLAYERDLG_H__206A2874_860C_4723_9968_D6E748F572A0__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // AVIPlayerDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CAVIPlayerDlg dialog
  10. class CAVIPlayerDlg : public CDialog
  11. {
  12. HWND m_Video;
  13. BOOL Pause;
  14. // Construction
  15. public:
  16. CAVIPlayerDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CAVIPlayerDlg)
  19. enum { IDD = IDD_MP3BASICPLAYER_DIALOG };
  20. CButton m_Pause;
  21. CButton m_Play;
  22. CString m_Path;
  23. //}}AFX_DATA
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CAVIPlayerDlg)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. // Generated message map functions
  33. //{{AFX_MSG(CAVIPlayerDlg)
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnPlay();
  36. afx_msg void OnPause();
  37. afx_msg void OnStop();
  38. afx_msg void OnDestroy();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_AVIPLAYERDLG_H__206A2874_860C_4723_9968_D6E748F572A0__INCLUDED_)