vc ++6.0 怎样播放声音
#include <iostream.h>#include <fstream.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#pragma comment(lib, "winmm.lib")
void main()
{
PlaySound("D:\\notify.wav", NULL, SND_FILENAME | SND_ASYNC);
}
在网上看到这程序 在 vc6.0 中怎么播放不了????
我的音频文件放在 D 盘中。。。