|
Copyright © 2001-2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
control.CdRequestAlbumInfo (
strArtist as String,
strAlbum as String,
strAmazonDeveloperCode as String
) as enumErrorCodes
|
|
[C++]
short control.CdRequestAlbumInfo (
LPCTSTR strArtist,
LPCTSTR strAlbum,
LPCTSTR strAmazonDeveloperCode
);
|
|
Parameter
|
Description
|
|
|
|
|
strArtist
|
String representing the artist name: if it shouldn't be complete the search session would try finding the best match.
|
|
strAlbum
|
String representing the album title: if it shouldn't be complete the search session would try finding the best match.
|
|
strAmazonDeveloperCode
|
String representing the Amazon developer code: this string is optional but it's strongly recommended that you obtain a developer code from Amazon; visit the Amazon Web Services site for creating your own account
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to see the error code meaning
|
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|