回复 11楼 debroa723
又有了一个新问题。。。。我想让两段声音连着播放,比如下面这个程序:
=====================================================================
#include<iostream>
#include<windows.h>
#include<mmsystem.h>
using namespace std;
void main()
{
PlaySound("F:\\编程练习\\模拟读数\\Sound\\一.wav",NULL,SND_SYNC);
PlaySound("F:\\编程练习\\模拟读数\\Sound\\十.wav",NULL,SND_SYNC);
}
=====================================================================
编译的时候通过了,没有错误,也没有警告。但是运行的时候返回一个错误:
--------------------Configuration: Cpp1 - Win32 Debug--------------------
Linking...
Cpp1.obj : error LNK2001: unresolved external symbol __imp__PlaySoundA@12
Debug/Cpp1.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
Cpp1.exe - 1 error(s), 0 warning(s)
这是怎么回事呢?