Copyright © 2006-2019 MultiMedia Soft

CdRippingStopped event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs whenever a CD ripping session is completed or stopped through a call to the CdRippingStop method.

 

 

Syntax

 

[Visual Basic]

CdRippingStopped (

ByVal nCdDriveIndex as integer,

ByVal nCdTrackIndex as integer,

ByVal bCompleted As enumBoolean

)


 

[C++]

void CdRippingStopped (

short nCdDriveIndex,

short nCdTrackIndex,

long bCompleted

);


 

 

Parameter

Description

 

 

nCdDriveIndex

Number representing the zero-based index of the CD drive that fired the event.

The total number of available CD drives can be obtained using the GetCdDrivesCount method.

nCdTrackIndex

Number representing the one-based index of the CD audio track that is being ripped.

bCompleted

Boolean value that specifies if the CD ripping session was completed or interrupted before completion.

Supported values are the following:

Mnemonic Value

Numeric value

Meaning

BOOL_FALSE

0

The ripping of the given CD track was interrupted: interruption's possible causes are the CD drive door being opened or a call to the CdRippingStop method. Check the LastError property value in order to see the last error.

BOOL_TRUE

1

The ripping of the given CD track was completed.