VS PlaySound function and add the winmm.lib

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

1, 在stdafx.h中加入#include

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


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

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

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

你可能感兴趣的:(C/C++,PlaySound,winmm.lib)