Remarks
Occurs, during a CD ripping session, as a consequence of a CD read error.
Syntax
[Visual Basic]
CdDriveReadError (
ByVal nCdDriveIndex as integer,
ByVal nCdTrackIndex as integer,
ByVal nPositionInBytes as long,
ByVal nPositionInMs as long
)
|
|
[C++]
void CdDriveReadError (
short nCdDriveIndex,
short nCdTrackIndex,
long nPositionInBytes,
long nPositionInMs
);
|
|
Parameters
|
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.
|
nPositionInBytes
|
Number representing the position within the CD track, expressed in bytes, where the read error occurred.
|
nPositionInMs
|
Number representing the position within the CD track, expressed in milliseconds, where the read error occurred.
|
|