作者在 2020-06-28 14:29:23 发布以下内容
1.设置(settings)->编译器(compiler)->链接器设置(Linker settings)->其他链接器选项->输入-lwinmm->确定
2.音乐文件(需是wav文件)放入bin->Debug
{转化格式可以用格式工厂}
3.代码:
#include<windows.h>
#include<mmsystem.h>
#pragma comment(lib,"winmm.lib")
int main()
{
PlaySound(TEXT("cai.wav"),NULL,SND_FILENAME | SND_ASYNC | SND_LOOP);
getch();
return 0;
}
windows.h 需在 mmsystem.h 上方