BASS_CD_Analog_Stop

Stops analog playback on a drive.

BOOL BASS_CD_Analog_Stop(
    DWORD drive
);

Parameters

driveThe drive... 0 = the first drive.

Return value

If successful, TRUE is returned, else FALSE is returned. Use BASS_ErrorGetCode to get the error code.

Error codes

BASS_ERROR_DEVICEdrive is invalid.
BASS_ERROR_UNKNOWNSome other mystery problem!

Remarks

Pausing can be achieved by getting the position (BASS_CD_Analog_GetPosition) just before stopping, and then using that position in a call to BASS_CD_Analog_Play to resume.

See also

BASS_CD_Analog_IsActive, BASS_CD_Analog_Play