我正在尝试使用 PlaySound,我把
#include <windows.h>
#include <mmsystem.h>
#pragma comment( lib, "Winmm.lib" )
using namespace std;
int main()
{
PlaySound(L"C:\\Users\\iD Student\\Downloads\\HarryPotter.mp3", 0, SND_FILENAME);
}
它没有播放我想要的声音,而是播放了一些默认的 Windows 声音。