Share via


Windows Media Player 11 SDK IWMPPlaylistCollection::importPlaylist 

Windows Media Player SDK banner art

Previous Next

IWMPPlaylistCollection::importPlaylist

The importPlaylist method adds a static playlist to the library.

Syntax

  

Parameters

pItem

[in]  Pointer to an IWMPPlaylist interface for the playlist that this method will add.

ppImportedItem

[out]  Pointer to a pointer to an IWMPPlaylist interface for the added playlist.

Return Values

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

Return code Description
S_OK The method succeeded.

Remarks

Playlists that do not contain any media items cannot be added to the library by using this method. To create an empty playlist in the library, use the newPlaylist method. You can then fill the resulting playlist with media items by using IWMPPlaylist::appendItem or IWMPPlaylist::insertItem.

If you pass this method an auto playlist, the query is executed once and the result is added to the library as a static playlist. To add an auto playlist to the library and preserve its automatic behavior, use IWMPMediaCollection::add. For more information, see Static and Auto Playlists.

Before calling this method, you must have read access to the library. For more information, see Library Access.

Requirements

Version: Windows Media Player 9 Series or later.

Header: Include wmp.h.

Library: Use wmp.dll.

See Also

Previous Next