Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
717e0b68
Commit
717e0b68
authored
Nov 10, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ever const
parent
8724262b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
include/vlc_playlist.h
include/vlc_playlist.h
+2
-2
include/vlc_symbols.h
include/vlc_symbols.h
+2
-2
src/playlist/tree.c
src/playlist/tree.c
+2
-2
No files found.
include/vlc_playlist.h
View file @
717e0b68
...
...
@@ -400,14 +400,14 @@ VLC_EXPORT(void, playlist_NodeDump, ( playlist_t *p_playlist, playlist_item_t *p
VLC_EXPORT
(
int
,
playlist_NodeChildrenCount
,
(
playlist_t
*
,
playlist_item_t
*
)
);
/* Node management */
VLC_EXPORT
(
playlist_item_t
*
,
playlist_NodeCreate
,
(
playlist_t
*
,
char
*
,
playlist_item_t
*
p_parent
)
);
VLC_EXPORT
(
playlist_item_t
*
,
playlist_NodeCreate
,
(
playlist_t
*
,
c
onst
c
har
*
,
playlist_item_t
*
p_parent
)
);
VLC_EXPORT
(
int
,
playlist_NodeAppend
,
(
playlist_t
*
,
playlist_item_t
*
,
playlist_item_t
*
)
);
VLC_EXPORT
(
int
,
playlist_NodeInsert
,
(
playlist_t
*
,
playlist_item_t
*
,
playlist_item_t
*
,
int
)
);
VLC_EXPORT
(
int
,
playlist_NodeRemoveItem
,
(
playlist_t
*
,
playlist_item_t
*
,
playlist_item_t
*
)
);
VLC_EXPORT
(
playlist_item_t
*
,
playlist_ChildSearchName
,
(
playlist_item_t
*
,
const
char
*
)
);
VLC_EXPORT
(
int
,
playlist_NodeDelete
,
(
playlist_t
*
,
playlist_item_t
*
,
vlc_bool_t
,
vlc_bool_t
)
);
VLC_EXPORT
(
int
,
playlist_NodeEmpty
,
(
playlist_t
*
,
playlist_item_t
*
,
vlc_bool_t
)
);
VLC_EXPORT
(
void
,
playlist_NodesPairCreate
,
(
playlist_t
*
,
char
*
,
playlist_item_t
**
,
playlist_item_t
**
,
vlc_bool_t
)
);
VLC_EXPORT
(
void
,
playlist_NodesPairCreate
,
(
playlist_t
*
,
c
onst
c
har
*
,
playlist_item_t
**
,
playlist_item_t
**
,
vlc_bool_t
)
);
VLC_EXPORT
(
playlist_item_t
*
,
playlist_GetPreferredNode
,
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_node
)
);
/***********************************************************************
...
...
include/vlc_symbols.h
View file @
717e0b68
...
...
@@ -279,7 +279,7 @@ struct module_symbols_t
void
*
playlist_ViewUpdate_deprecated
;
void
*
playlist_ViewDump_deprecated
;
void
*
playlist_ViewEmpty_deprecated
;
playlist_item_t
*
(
*
playlist_NodeCreate_inner
)
(
playlist_t
*
,
char
*
,
playlist_item_t
*
p_parent
);
playlist_item_t
*
(
*
playlist_NodeCreate_inner
)
(
playlist_t
*
,
c
onst
c
har
*
,
playlist_item_t
*
p_parent
);
int
(
*
playlist_NodeAppend_inner
)
(
playlist_t
*
,
playlist_item_t
*
,
playlist_item_t
*
);
int
(
*
playlist_NodeInsert_inner
)
(
playlist_t
*
,
playlist_item_t
*
,
playlist_item_t
*
,
int
);
int
(
*
playlist_NodeRemoveItem_inner
)
(
playlist_t
*
,
playlist_item_t
*
,
playlist_item_t
*
);
...
...
@@ -536,7 +536,7 @@ struct module_symbols_t
int
(
*
net_SetDSCP_inner
)
(
int
fd
,
uint8_t
dscp
);
void
(
*
vout_EnableFilter_inner
)
(
vout_thread_t
*
,
char
*
,
vlc_bool_t
,
vlc_bool_t
);
void
(
*
aout_EnableFilter_inner
)
(
vlc_object_t
*
,
const
char
*
,
vlc_bool_t
);
void
(
*
playlist_NodesPairCreate_inner
)
(
playlist_t
*
,
char
*
,
playlist_item_t
**
,
playlist_item_t
**
,
vlc_bool_t
);
void
(
*
playlist_NodesPairCreate_inner
)
(
playlist_t
*
,
c
onst
c
har
*
,
playlist_item_t
**
,
playlist_item_t
**
,
vlc_bool_t
);
char
*
(
*
aout_VisualChange_inner
)
(
vlc_object_t
*
,
int
);
void
*
__input_SecondaryPreparse_deprecated
;
void
(
*
input_ItemAddOption_inner
)
(
input_item_t
*
,
const
char
*
);
...
...
src/playlist/tree.c
View file @
717e0b68
...
...
@@ -49,7 +49,7 @@ playlist_item_t *GetPrevItem( playlist_t *p_playlist,
* \param p_parent the parent node to attach to or NULL if no attach
* \return the new node
*/
playlist_item_t
*
playlist_NodeCreate
(
playlist_t
*
p_playlist
,
char
*
psz_name
,
playlist_item_t
*
playlist_NodeCreate
(
playlist_t
*
p_playlist
,
c
onst
c
har
*
psz_name
,
playlist_item_t
*
p_parent
)
{
input_item_t
*
p_input
;
...
...
@@ -285,7 +285,7 @@ playlist_item_t *playlist_ChildSearchName( playlist_item_t *p_node,
* \param pp_node_one pointer to return the node in onelevel tree
* \param b_for_sd For Services Discovery ? (make node read-only and unskipping)
*/
void
playlist_NodesPairCreate
(
playlist_t
*
p_playlist
,
char
*
psz_name
,
void
playlist_NodesPairCreate
(
playlist_t
*
p_playlist
,
c
onst
c
har
*
psz_name
,
playlist_item_t
**
pp_node_cat
,
playlist_item_t
**
pp_node_one
,
vlc_bool_t
b_for_sd
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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