SoundDlg.h
上传用户:hygd004
上传日期:2022-02-04
资源大小:1841k
文件大小:2k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // SoundDlg.h : header file
  2. //
  3. #if !defined(AFX_SOUNDDLG_H__BDDA38F5_613D_11D2_A7A3_000000000000__INCLUDED_)
  4. #define AFX_SOUNDDLG_H__BDDA38F5_613D_11D2_A7A3_000000000000__INCLUDED_
  5. #include "DirectSound.h" // Added by ClassView
  6. #include <dsound.h>
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSoundDlg dialog
  12. class CSoundDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CString      m_soundfile;
  17. CString  m_filename;
  18. int          m_nState;
  19. BOOL         m_bStop;
  20. HANDLE       m_hThread;
  21. FILE*        fp;
  22. BOOL         m_bContine;
  23. void         ReadFileProc();
  24. CDirectSound* m_sndSound1;
  25. CSoundDlg(CWnd* pParent = NULL); // standard constructor
  26. // Dialog Data
  27. //{{AFX_DATA(CSoundDlg)
  28. enum { IDD = IDD_SOUND_DIALOG };
  29. // NOTE: the ClassWizard will add data members here
  30. //}}AFX_DATA
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CSoundDlg)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. HICON m_hIcon;
  39. // Generated message map functions
  40. //{{AFX_MSG(CSoundDlg)
  41. virtual BOOL OnInitDialog();
  42. afx_msg void OnPaint();
  43. afx_msg HCURSOR OnQueryDragIcon();
  44. afx_msg void OnSound2();
  45. afx_msg void OnSound1();
  46. afx_msg void OnBothSounds();
  47. afx_msg void OnDestroy();
  48. afx_msg void OnBUTTONSlow();
  49. afx_msg void OnBUTTONFast();
  50. afx_msg void OnBUTTONNormal();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. private:
  54. // CDirectSound m_sndSound2;
  55. afx_msg void OnBnClickedSoundstop2();
  56. afx_msg void OnBnClickedSoundopen();
  57. };
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_SOUNDDLG_H__BDDA38F5_613D_11D2_A7A3_000000000000__INCLUDED_)