程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> VC >> vc教程 >> 在VC++中播放WAV文件

在VC++中播放WAV文件

編輯:vc教程

  首先,你必須手工將WAV文件加入到資源文件.rc 中。

  象這樣:wave

  例子:cool wave c:projectssoundscool.wav
  
  然後,在你需要播放WAV的地方加入下面的函數:

  bool playresource(lpstr lpname)
  {
  bool brtn;
  lpstr lpres;
  handle hres;
  hrsrc hresinfo;
  hinstance nl=afxgetinstancehandle();

  /* find the wave resource. */
  hresinfo= findresource(nl,lpname,"wave");
  if(hresinfo == null)
  return false;
  /* load the wave resource. */

  hres = loadresource(nl,hresinfo);
  if (hres == null)
  return false;

  /* lock the wave resource and play it. */
  lpres=(lpstr)lockresource(hres);
  if(lpres==null)
  return false;

  brtn = sndplaysound(lpres, snd_memory | snd_sync);
  if(brtn == null)
  return false;

  /* free the wave resource and return success or failure. */
  freeresource(hres);
  return true;
  }
  
  最後,你就可以使用了。

  playresource("cool");

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved