Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents  
 
PlayListSave method 
 
Remarks 
 
Saves the current playlist into the given file. 
 
 
Syntax 
 
[Visual Basic] 
control.PlayListSave
nPlayer as Integer, 
strPathname as String
nFormat as enumPlayListFormats 
 
[C++] 
short control.PlayListSave
short nPlayer
LPCTSTR strPathname
short nFormat 
);
 
 
Parameter
Description
 
 
nPlayer
Number representing the zero-based index of the player that will own the new playlist
strPathname
String containing the name of the playlist file: accepted playlist formats are M3U and PLS
nFormat
Save format. 
 
Supported values are the following: 
Mnemonic constant
Value
Meaning
PLAYLIST_FORMAT_M3U
0
M3U format
PLAYLIST_FORMAT_PLS
1
PLS format
PLAYLIST_FORMAT_WPL
2
WPL format
 
 
Return value 
 
Value
Meaning
 
 
Negative value
An error occurred (see the LastError property for further error details)
enumErrorCodes.ERR_NOERROR (0)
The call was successful.
 
 
 
 
 
 
 
Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents