Changeset d057b0df8de8ec4816fa4d1fd194a89c7c49cce6

Show
Ignore:
Timestamp:
19/07/08 12:57:20 (4 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1216465040 +0200
git-parent:

[0a1480ee6d7dd33d312048fa62231ba5ed6e9a02]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1216459665 +0200
Message:

playlist: playlist_NodeAddInput was noted as deprecated in docs, remove it from exported symbols.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_playlist.h

    r0a1480e rd057b0d  
    369369VLC_EXPORT( int,  playlist_AddExt, ( playlist_t *, const char *, const char *, int, int, mtime_t, const char *const *,int, bool, bool ) ); 
    370370VLC_EXPORT( int, playlist_AddInput, ( playlist_t *, input_item_t *, int, int, bool, bool ) ); 
    371 VLC_EXPORT( playlist_item_t *, playlist_NodeAddInput, ( playlist_t *, input_item_t *,playlist_item_t *,int , int, bool ) ); 
    372371VLC_EXPORT( int, playlist_BothAddInput, ( playlist_t *, input_item_t *,playlist_item_t *,int , int, int*, int*, bool ) ); 
    373372 
  • modules/gui/wxwidgets/dialogs/playlist.cpp

    ra2174f0 rd057b0d  
    12881288        input_item_t *p_input = input_ItemNew( p->p_playlist, 
    12891289                                              psz_utf8, psz_utf8 ); 
    1290         int i_ret = ( playlist_NodeAddInput( p->p_playlist, p_input, p_dest, 
    1291                 PLAYLIST_PREPARSE, i_pos, false ) != VLC_SUCCESS ); 
     1290        int i_ret = ( playlist_BothAddInput( p->p_playlist, p_input, p_dest, 
     1291                PLAYLIST_PREPARSE, i_pos, NULL, NULL, pl_Unlocked ) != VLC_SUCCESS ); 
    12921292        vlc_gc_decref( p_input ); 
    12931293        wxDnDLocaleFree( psz_utf8 ); 
  • src/libvlccore.sym

    r0a1480e rd057b0d  
    260260playlist_ItemToNode 
    261261playlist_LiveSearchUpdate 
    262 playlist_NodeAddInput 
    263262playlist_NodeAppend 
    264263playlist_NodeChildrenCount 
  • src/playlist/playlist_internal.h

    r0a1480e rd057b0d  
    9999                             int i_node_id, bool b_signal ); 
    100100 
     101playlist_item_t * playlist_NodeAddInput( playlist_t *, input_item_t *, 
     102        playlist_item_t *,int , int, bool ); 
     103 
    101104/* Tree walking */ 
    102105playlist_item_t *playlist_ItemFindFromInputAndRoot( playlist_t *p_playlist,