Remarks
Occurs when the synchronized loading of a playlist is completed. A synchronized loading is started through a call to the PlayListLoadSync method.
For further details about playlists management see the How to create and manage a playlist tutorial.
Syntax
[Visual Basic]
PlayListLoadDone (
ByVal nPlayer as Integer,
ByVal bSuccess as enumBoolean
)
|
|
[C++]
void PlayListLoadDone (
short nPlayer,
short bSuccess
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the player that fired the event
|
bSuccess
|
Boolean value that specifies if the playlist was loaded successfully.
Supported values are the following:
Mnemonic Value
|
Numeric value
|
Meaning
|
BOOL_FALSE
|
0
|
The request failed
|
BOOL_TRUE
|
1
|
The request succeeded
|
|
|