有没有办法查询mci设备查询当前播放位置,以便我们可以从那里继续播放以便稍后播放?
cmd.Format(L“状态%d waveaudio position”,m_iDeviceIDPlayer);
mcirez = mciSendString(cmd,buff.GetBuffer(),1024,NULL);
它给出了这个错误:“指定的设备未打开或MCI无法识别”
命令有问题吗?
答案 0 :(得分:0)
MCI_STATUS_PARMS status;
status.dwItem = MCI_STATUS_POSITION;
status.dwCallback = 0;
dwReturn = mciSendCommand(m_iDeviceIDPlayer,MCI_STATUS,MCI_STATUS_ITEM|MCI_WAIT,(DWORD_PTR)&status);
位置 - > status.dwReturn是必需的位置。