怎么使用Playsound函数在c程序中添加背景音乐呢?求解!!!
怎么使用Playsound函数在c程序中添加背景音乐呢?求解!!!
2012-12-12 18:35
2012-12-13 09:14
2012-12-13 09:57
2012-12-13 10:13
2012-12-13 12:47
2012-12-13 13:00
2012-12-13 18:57
2012-12-13 18:59
程序代码:#include <stdio.h>
#include <windows.h>
#include <mmsystem.h> //需要引用Winmm.lib
int main(void)
{
PlaySound("die.wav",NULL,SND_ALIAS|SND_ASYNC);
while(1);
return 0;
}
2012-12-13 20:01
2013-03-18 20:02