Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
53b281b4
Commit
53b281b4
authored
Apr 17, 2008
by
Rafaël Carré
Browse files
Do not put a private function in a public header
parent
eca04533
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/vlc_playlist.h
View file @
53b281b4
...
...
@@ -366,10 +366,6 @@ VLC_EXPORT( int, playlist_BothAddInput, ( playlist_t *, input_item_t *,playlist_
/********************** Misc item operations **********************/
VLC_EXPORT
(
playlist_item_t
*
,
playlist_ItemToNode
,
(
playlist_t
*
,
playlist_item_t
*
,
bool
)
);
playlist_item_t
*
playlist_ItemFindFromInputAndRoot
(
playlist_t
*
p_playlist
,
int
i_input_id
,
playlist_item_t
*
p_root
,
bool
);
/********************************** Item search *************************/
VLC_EXPORT
(
playlist_item_t
*
,
playlist_ItemGetById
,
(
playlist_t
*
,
int
,
bool
)
);
VLC_EXPORT
(
playlist_item_t
*
,
playlist_ItemGetByInput
,
(
playlist_t
*
,
input_item_t
*
,
bool
)
);
...
...
src/playlist/playlist_internal.h
View file @
53b281b4
...
...
@@ -111,6 +111,10 @@ playlist_item_t *playlist_GetPrevLeaf( playlist_t *p_playlist,
playlist_item_t
*
playlist_GetLastLeaf
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_root
);
playlist_item_t
*
playlist_ItemFindFromInputAndRoot
(
playlist_t
*
p_playlist
,
int
i_input_id
,
playlist_item_t
*
p_root
,
bool
);
int
playlist_DeleteFromItemId
(
playlist_t
*
,
int
);
int
playlist_ItemDelete
(
playlist_item_t
*
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment