Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
WCHAR retString[255];
WCHAR errString[512];
CString cmd;
cmd.Format(L"open \"%s\" type mpegvideo alias mp3File", m_file);
error = mciSendString(cmd,retString,512,NULL);
if( error ) {
bRet = mciGetErrorString(error, errString, 512);
AfxMessageBox(errString,MB_OK,-1);
}
else {
cmd.Format(L"play mp3File notify", retString);
error = mciSendString(cmd,retString,512,GetSafeHwnd());
if( error ) {
bRet = mciGetErrorString(error, errString, 512);
AfxMessageBox(errString,MB_OK,-1);
}
}