Commit 0a1480ee authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

playlist: playlist_DeleteFromInputInParent wasn't used by modules, don't export it.

parent 587f46a9
...@@ -360,7 +360,6 @@ VLC_EXPORT( playlist_item_t* , playlist_ItemNewWithType, ( playlist_t *,const ch ...@@ -360,7 +360,6 @@ VLC_EXPORT( playlist_item_t* , playlist_ItemNewWithType, ( playlist_t *,const ch
/*************************** Item deletion **************************/ /*************************** Item deletion **************************/
VLC_EXPORT( int, playlist_DeleteFromInput, ( playlist_t *, int, bool ) ); VLC_EXPORT( int, playlist_DeleteFromInput, ( playlist_t *, int, bool ) );
VLC_EXPORT( int, playlist_DeleteFromInputInParent, ( playlist_t *, int, playlist_item_t *, bool ) );
/*************************** Item fields accessors **************************/ /*************************** Item fields accessors **************************/
VLC_EXPORT( int, playlist_ItemSetName, (playlist_item_t *, const char * ) ); VLC_EXPORT( int, playlist_ItemSetName, (playlist_item_t *, const char * ) );
......
...@@ -246,7 +246,6 @@ playlist_Clear ...@@ -246,7 +246,6 @@ playlist_Clear
playlist_Control playlist_Control
playlist_CurrentInput playlist_CurrentInput
playlist_DeleteFromInput playlist_DeleteFromInput
playlist_DeleteFromInputInParent
playlist_Export playlist_Export
playlist_GetLastLeaf playlist_GetLastLeaf
playlist_GetNextLeaf playlist_GetNextLeaf
......
...@@ -103,6 +103,7 @@ playlist_item_t *playlist_ItemFindFromInputAndRoot( playlist_t *p_playlist, ...@@ -103,6 +103,7 @@ playlist_item_t *playlist_ItemFindFromInputAndRoot( playlist_t *p_playlist,
int i_input_id, playlist_item_t *p_root, int i_input_id, playlist_item_t *p_root,
bool ); bool );
int playlist_DeleteFromInputInParent( playlist_t *, int, playlist_item_t *, bool );
int playlist_DeleteFromItemId( playlist_t*, int ); int playlist_DeleteFromItemId( playlist_t*, int );
int playlist_ItemDelete ( playlist_item_t * ); int playlist_ItemDelete ( playlist_item_t * );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment