mciwave: Correct MCI return codes.

This commit is contained in:
Jörg Höhle 2009-11-03 00:32:30 +01:00 committed by Alexandre Julliard
parent d3dd250c2e
commit 59bb360a5d
1 changed files with 3 additions and 3 deletions

View File

@ -791,7 +791,7 @@ static DWORD WAVE_mciPlay(MCIDEVICEID wDevID, DWORD_PTR dwFlags, DWORD_PTR pmt,
TRACE("Playing from byte=%u to byte=%u\n", wmw->dwPosition, end); TRACE("Playing from byte=%u to byte=%u\n", wmw->dwPosition, end);
if (end <= wmw->dwPosition) if (end <= wmw->dwPosition)
return TRUE; return MMSYSERR_NOERROR;
#define WAVE_ALIGN_ON_BLOCK(wmw,v) \ #define WAVE_ALIGN_ON_BLOCK(wmw,v) \
@ -1026,7 +1026,7 @@ static DWORD WAVE_mciRecord(MCIDEVICEID wDevID, DWORD_PTR dwFlags, DWORD_PTR pmt
if (end <= wmw->dwPosition) if (end <= wmw->dwPosition)
{ {
return TRUE; return MMSYSERR_NOERROR;
} }
#define WAVE_ALIGN_ON_BLOCK(wmw,v) \ #define WAVE_ALIGN_ON_BLOCK(wmw,v) \
@ -1471,7 +1471,7 @@ static DWORD WAVE_mciStatus(MCIDEVICEID wDevID, DWORD dwFlags, LPMCI_STATUS_PARM
lpParms->dwReturn = id; lpParms->dwReturn = id;
} else { } else {
lpParms->dwReturn = 0; lpParms->dwReturn = 0;
ret = MCIERR_WAVE_INPUTUNSPECIFIED; ret = MCIERR_WAVE_OUTPUTUNSPECIFIED;
} }
} }
break; break;