Removed warning.

This commit is contained in:
Eric Pouech 1998-12-18 15:08:39 +00:00 committed by Alexandre Julliard
parent 007a2d6525
commit 024d194d5a

View File

@ -443,7 +443,6 @@ static DWORD WAVE_mciPlay(UINT16 wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms
return 0;
}
/**************************************************************************
* WAVE_mciRecord [internal]
*/
@ -535,7 +534,6 @@ static DWORD WAVE_mciPause(UINT16 wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpP
return (dwRet == MMSYSERR_NOERROR) ? 0 : MCIERR_INTERNAL;
}
/**************************************************************************
* WAVE_mciResume [internal]
*/
@ -558,7 +556,7 @@ static DWORD WAVE_mciResume(UINT16 wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lp
else dwRet = wodMessage(wDevID, WODM_PLAY, 0, dwFlags, (DWORD)lpParms);
return (dwRet == MMSYSERR_NOERROR) ? 0 : MCIERR_INTERNAL;
#else
return 0;
return dwRet;
#endif
}
@ -684,7 +682,6 @@ static DWORD WAVE_mciSet(UINT16 wDevID, DWORD dwFlags, LPMCI_SET_PARMS lpParms)
return 0;
}
/**************************************************************************
* WAVE_mciStatus [internal]
*/
@ -951,5 +948,3 @@ LONG MCIWAVE_DriverProc32(DWORD dwDevID, HDRVR16 hDriv, DWORD wMsg,
}
return MCIERR_UNRECOGNIZED_COMMAND;
}