暫停和繼續播放
您可以使用 MCIWndPause 宏中斷與 MCIWnd 視窗相關聯的裝置或檔案播放。 接著,您可以使用 MCIWndResume 宏重新開機播放。 如果裝置不支援繼續或發生錯誤,您可以使用 MCIWndPlay 宏重新開機播放。
下列範例會建立 MCIWnd 視窗並播放 AVI 檔案。 暫停和繼續功能表命令可供使用者中斷並重新啟動播放。
MCIWnd 視窗樣式會暫時變更,方法是使用 MCIWndChangeStyles 宏來禁止 MCI 錯誤對話方塊在 MCIWndResume 失敗時顯示。
case WM_COMMAND:
switch (wParam)
{
case IDM_CREATEMCIWND: // creates and plays clip
g_hwndMCIWnd = MCIWndCreate(hwnd,
g_hinst,
WS_CHILD | WS_VISIBLE | // standard styles
MCIWNDF_NOPLAYBAR | // hides toolbar
MCIWNDF_NOTIFYMODE, // notifies of mode changes
"sample.avi");
MCIWndPlay(g_hwndMCIWnd);
break;
case IDM_PAUSEMCIWND: // pauses playback
MCIWndPause(g_hwndMCIWnd);
MessageBox(hwnd, "MCIWnd", "Pausing Playback", MB_OK);
break;
case IDM_RESUMEMCIWND: // resumes playback
MCIWndChangeStyles( // hides error dialog messages
g_hwndMCIWnd, // MCIWnd window
MCIWNDF_NOERRORDLG, // mask of style to change
MCIWNDF_NOERRORDLG); // suppresses MCI error dialogs
lResult = MCIWndResume(g_hwndMCIWnd);
if(lResult){ // device doesn't resume
MessageBox(hwnd, "MCIWnd",
"Resume with Stop and Play", MB_OK);
MCIWndStop(g_hwndMCIWnd);
MCIWndPlay(g_hwndMCIWnd);
MCIWndChangeStyles( // resumes original styles
g_hwndMCIWnd,
MCIWNDF_NOERRORDLG,
NULL);
}
break;
}
break;
// Handle other messages here.