Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
1c4f1394
Commit
1c4f1394
authored
Aug 21, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport ml_Create() and ml_Destroy()
parent
4d14350c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
17 deletions
+2
-17
include/vlc_media_library.h
include/vlc_media_library.h
+2
-2
src/libvlccore.sym
src/libvlccore.sym
+0
-2
src/missing.c
src/missing.c
+0
-13
No files found.
include/vlc_media_library.h
View file @
1c4f1394
...
...
@@ -406,13 +406,13 @@ VLC_API media_library_t* ml_Get( vlc_object_t* p_this );
* @param psz_name Name for the module
* @return The ML object.
*/
VLC_API
media_library_t
*
ml_Create
(
vlc_object_t
*
p_this
,
char
*
psz_name
);
media_library_t
*
ml_Create
(
vlc_object_t
*
p_this
,
char
*
psz_name
);
/**
* @brief Destructor for the Media library singleton
* @param p_this Parent the ML object is attached to
*/
VLC_API
void
ml_Destroy
(
vlc_object_t
*
p_this
);
void
ml_Destroy
(
vlc_object_t
*
p_this
);
/**
* @brief Control the Media Library
...
...
src/libvlccore.sym
View file @
1c4f1394
...
...
@@ -226,8 +226,6 @@ vlc_UrlClean
vlc_path2uri
make_path
mdate
ml_Create
ml_Destroy
ml_Get
media_New
ml_OpConnectChilds
...
...
src/missing.c
View file @
1c4f1394
...
...
@@ -379,19 +379,6 @@ media_library_t* ml_Get ( vlc_object_t* p_this )
return
NULL
;
}
media_library_t
*
ml_Create
(
vlc_object_t
*
p_this
,
char
*
psz_name
)
{
VLC_UNUSED
(
p_this
);
VLC_UNUSED
(
psz_name
);
return
NULL
;
}
void
ml_Destroy
(
vlc_object_t
*
p_this
)
{
VLC_UNUSED
(
p_this
);
assert
(
0
);
}
ml_media_t
*
media_New
(
media_library_t
*
p_ml
,
int
id
,
ml_select_e
select
,
bool
reload
)
{
VLC_UNUSED
(
p_ml
);
...
...
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