Remarks
Occurs when the CDDB server returns the CD album information requested through a previous call to the CddbRequestAlbumInfo method.
If successful, after receiving this event it will be possible:
See the How to get CD album information from a CDDB server tutorial for further details.
Syntax
[Visual Basic]
CddbAlbumInfoAvailable (
ByVal nCdDriveIndex as Integer,
ByVal bSuccess as enumBoolean
)
|
|
[C++]
void CddbAlbumInfoAvailable (
short nCdDriveIndex,
long bSuccess
);
|
|
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.
|
bSuccess
|
Boolean value that specifies if the CDDB information was retrieved successfully.
Supported values are the following:
Mnemonic Value
|
Numeric value
|
Meaning
|
BOOL_FALSE
|
0
|
The request failed
|
BOOL_TRUE
|
1
|
The request succeeded and CDDB information is available
|
|
|