Changeset d057b0df8de8ec4816fa4d1fd194a89c7c49cce6
- 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
| r0a1480e |
rd057b0d |
|
| 369 | 369 | VLC_EXPORT( int, playlist_AddExt, ( playlist_t *, const char *, const char *, int, int, mtime_t, const char *const *,int, bool, bool ) ); |
|---|
| 370 | 370 | VLC_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 ) ); |
|---|
| 372 | 371 | VLC_EXPORT( int, playlist_BothAddInput, ( playlist_t *, input_item_t *,playlist_item_t *,int , int, int*, int*, bool ) ); |
|---|
| 373 | 372 | |
|---|
| ra2174f0 |
rd057b0d |
|
| 1288 | 1288 | input_item_t *p_input = input_ItemNew( p->p_playlist, |
|---|
| 1289 | 1289 | 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 ); |
|---|
| 1292 | 1292 | vlc_gc_decref( p_input ); |
|---|
| 1293 | 1293 | wxDnDLocaleFree( psz_utf8 ); |
|---|
| r0a1480e |
rd057b0d |
|
| 260 | 260 | playlist_ItemToNode |
|---|
| 261 | 261 | playlist_LiveSearchUpdate |
|---|
| 262 | | playlist_NodeAddInput |
|---|
| 263 | 262 | playlist_NodeAppend |
|---|
| 264 | 263 | playlist_NodeChildrenCount |
|---|
| r0a1480e |
rd057b0d |
|
| 99 | 99 | int i_node_id, bool b_signal ); |
|---|
| 100 | 100 | |
|---|
| | 101 | playlist_item_t * playlist_NodeAddInput( playlist_t *, input_item_t *, |
|---|
| | 102 | playlist_item_t *,int , int, bool ); |
|---|
| | 103 | |
|---|
| 101 | 104 | /* Tree walking */ |
|---|
| 102 | 105 | playlist_item_t *playlist_ItemFindFromInputAndRoot( playlist_t *p_playlist, |
|---|