当前位置: 代码迷 >> 综合 >> VS PlaySound function and add the winmm.lib
  详细解决方案

VS PlaySound function and add the winmm.lib

热度:8   发布时间:2024-01-11 05:24:05.0

需要在VS2008开发的软件中加入声音播放,需要使用PlaySound函数,具体方法是,

1, 在stdafx.h中加入#include <mmsystem.h>

2,在配置中加入winmm.lib,如下图。


3,使用具体函数,如下,

PlaySound(MAKEINTRESOURCE(IDR_WAVE_ALERT),AfxGetApp()->m_hInstance,SND_ASYNC|SND_RESOURCE|SND_NODEFAULT);

IDR_WAVE_ALERT是在资源中Import的声音文件。

  相关解决方案