Commit 1c4f1394 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Unexport ml_Create() and ml_Destroy()

parent 4d14350c
......@@ -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
......
......@@ -226,8 +226,6 @@ vlc_UrlClean
vlc_path2uri
make_path
mdate
ml_Create
ml_Destroy
ml_Get
media_New
ml_OpConnectChilds
......
......@@ -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 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment