WAVEDLG.H
资源名称:tapi3.zip [点击查看]
上传用户:chinamans
上传日期:2013-03-17
资源大小:202k
文件大小:1k
源码类别:
TAPI编程
开发平台:
Visual C++
- // wavedlg.h : header file
- // (c) Dialogic corp 1995, 1996
- //
- /////////////////////////////////////////////////////////////////////////////
- // CWaveDlg dialog
- class CWaveDlg : public CDialog
- {
- // Construction
- public:
- CWaveDlg(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CWaveDlg)
- enum { IDD = IDD_WAVEFORMAT };
- CButton m_btnPlayFormat;
- CComboBox m_ctlFormat;
- CString m_csFormat;
- int m_nPlayFile;
- //}}AFX_DATA
- // Data members
- int m_nFormatID;
- int m_nPlayFileFormatID;
- int m_nCustom;
- CString m_csFileName;
- CString m_csCustom;
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CWaveDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- void GetPlayFormatID();
- // Generated message map functions
- //{{AFX_MSG(CWaveDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnPlayformat();
- afx_msg void OnRecformat();
- afx_msg void OnSelchangeFormat();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };