Remarks
Occurs, during a CD ripping session, to notify the actual size of ripped sound data.
Syntax
[Visual Basic]
CdRippingSizeDouble (
ByVal nCdDriveIndex as integer,
ByVal nCdTrackIndex as integer,
ByVal fDataSize as double
)
|
|
[C++]
void CdRippingSizeDouble (
short nCdDriveIndex,
short nCdTrackIndex,
double fDataSize
);
|
|
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.
|
fDataSize
|
Number representing the actual size, expressed in bytes, of ripped data:
• | if ripping directly to memory, this value indicates the amount of memory occupied by ripped sound data |
• | if ripping directly to file, this value indicates the actual file size. |
|
|