Compartir a través de


Pausar y reanudar la reproducción

Puede interrumpir la reproducción de un dispositivo o archivo asociado a una ventana MCIWnd mediante la macro MCIWndPause . Después, puede reiniciar la reproducción mediante la macro MCIWndResume . Si el dispositivo no admite la reanudación o si se produce un error, puede usar la macro MCIWndPlay para reiniciar la reproducción.

En el ejemplo siguiente se crea una ventana MCIWnd y se reproduce un archivo AVI. Los comandos de menú Pausar y reanudar están disponibles para que el usuario interrumpa y reinicie la reproducción.

Los estilos de ventana de MCIWnd se cambian temporalmente mediante la macro MCIWndChangeStyles para impedir que se muestre un cuadro de diálogo de error de MCI si se produce un error en 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.