AudioPlay.h
上传用户:oldpeter23
上传日期:2013-01-09
资源大小:1111k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. //NetTalk
  2. /*------------------------------------------------------------------------------*
  3.  =============================
  4.    模块名称: AudioPlay.h
  5.  =============================
  6.  
  7.  [版权]
  8.  
  9.    2000-2002  115软件工厂  版权所有
  10.                                               
  11. *------------------------------------------------------------------------------*/
  12. #ifndef _AUDIOPLAY_H_
  13. #define _AUDIOPLAY_H_
  14. #include "WaveOut.h"
  15. class CAudioPlay:public CWaveOut
  16. {
  17. public:
  18. CAudioPlay();
  19. virtual  ~CAudioPlay();
  20. BOOL Create(WAVEFORMATEX *pwf,DWORD dwCallBack,DWORD dwInst,DWORD fdwOpen );
  21. BOOL Play(char* buf,UINT uSize);
  22. BOOL Destroy();
  23. protected:
  24. };
  25. #endif