vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Sun Jun 4 19:24:14 2017 +0300| [e24b5fd5dc518502b24c9931558f2ba81edb41ce] | committer: Rémi Denis-Courmont
input: privatize input_item_node_PostAndDelete (refs #17652) > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e24b5fd5dc518502b24c9931558f2ba81edb41ce --- include/vlc_input_item.h | 12 ------------ src/input/input_internal.h | 3 +++ src/libvlccore.sym | 1 - 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/include/vlc_input_item.h b/include/vlc_input_item.h index 16dfaf8e2e..d820a9fc95 100644 --- a/include/vlc_input_item.h +++ b/include/vlc_input_item.h @@ -202,18 +202,6 @@ void input_item_node_RemoveNode( input_item_node_t *parent, VLC_API void input_item_node_Delete( input_item_node_t *p_node ); /** - * End adding multiple subitems. - * - * Sends a vlc_InputItemSubItemTreeAdded event to notify that the item pointed to - * by the given root node has created new subitems that are pointed to by all the - * children of the node. - * - * In the end deletes the node and all its children nodes. - */ -VLC_API void input_item_node_PostAndDelete( input_item_node_t *p_node ); - - -/** * Option flags */ enum input_item_option_e diff --git a/src/input/input_internal.h b/src/input/input_internal.h index 85309bdfad..e504ad2865 100644 --- a/src/input/input_internal.h +++ b/src/input/input_internal.h @@ -275,4 +275,7 @@ void input_SplitMRL( const char **, const char **, const char **, void vlc_audio_replay_gain_MergeFromMeta( audio_replay_gain_t *p_dst, const vlc_meta_t *p_meta ); +/* item.c */ +void input_item_node_PostAndDelete( input_item_node_t *p_node ); + #endif diff --git a/src/libvlccore.sym b/src/libvlccore.sym index ef0e9d20ff..bc21ee682c 100644 --- a/src/libvlccore.sym +++ b/src/libvlccore.sym @@ -192,7 +192,6 @@ input_item_node_AppendItem input_item_node_AppendNode input_item_node_Create input_item_node_Delete -input_item_node_PostAndDelete input_item_ReplaceInfos input_item_SetDuration input_item_SetMeta _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
