WAVEDLG.H
上传用户:chinamans
上传日期:2013-03-17
资源大小:202k
文件大小:1k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. // wavedlg.h : header file
  2. // (c) Dialogic corp 1995, 1996
  3. //
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CWaveDlg dialog
  6. class CWaveDlg : public CDialog
  7. {
  8. // Construction
  9. public:
  10. CWaveDlg(CWnd* pParent = NULL);   // standard constructor
  11. // Dialog Data
  12. //{{AFX_DATA(CWaveDlg)
  13. enum { IDD = IDD_WAVEFORMAT };
  14. CButton m_btnPlayFormat;
  15. CComboBox m_ctlFormat;
  16. CString m_csFormat;
  17. int m_nPlayFile;
  18. //}}AFX_DATA
  19. // Data members
  20. int m_nFormatID;
  21. int m_nPlayFileFormatID;
  22. int m_nCustom;
  23. CString m_csFileName;
  24. CString m_csCustom;
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CWaveDlg)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33.   void GetPlayFormatID();
  34. // Generated message map functions
  35. //{{AFX_MSG(CWaveDlg)
  36. virtual BOOL OnInitDialog();
  37. afx_msg void OnPlayformat();
  38. afx_msg void OnRecformat();
  39. afx_msg void OnSelchangeFormat();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };