12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #if !defined(AFX_AVIPLAYERDLG_H__206A2874_860C_4723_9968_D6E748F572A0__INCLUDED_)
- #define AFX_AVIPLAYERDLG_H__206A2874_860C_4723_9968_D6E748F572A0__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // AVIPlayerDlg.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CAVIPlayerDlg dialog
- class CAVIPlayerDlg : public CDialog
- {
- HWND m_Video;
- BOOL Pause;
- // Construction
- public:
- CAVIPlayerDlg(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CAVIPlayerDlg)
- enum { IDD = IDD_MP3BASICPLAYER_DIALOG };
- CButton m_Pause;
- CButton m_Play;
- CString m_Path;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CAVIPlayerDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CAVIPlayerDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnPlay();
- afx_msg void OnPause();
- afx_msg void OnStop();
- afx_msg void OnDestroy();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_AVIPLAYERDLG_H__206A2874_860C_4723_9968_D6E748F572A0__INCLUDED_)
|