光驱的弹出和关闭,为什么不能运行
#include <windows.h>int WINAPI WinMain (HINSTANCE hThisInstance,HINSTANCE hPrevInstance,
LPSTR lpszArgument,int nFunsterStil)
{
mciSendString("set cdaudio door open",NULL,0,0); //弹出
MessageBox(NULL,"光驱已弹出,按确定关闭光驱。","光驱",MB_OK);
mciSendString("Set cdAudio door closed wait",NULL,0,NULL); //关闭
return 0;
}
编译通过了,可是在运行时,却显示main.obj : error LNK2001: unresolved external symbol __imp__mciSendStringA@16
Debug/光驱.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
我用的是vc
不知道要怎么修改。
请各位高手指点一下。谢谢。。。