]> git.sesse.net Git - vlc/commitdiff
Unexport ml_Create() and ml_Destroy()
authorRémi Denis-Courmont <remi@remlab.net>
Tue, 21 Aug 2012 18:17:31 +0000 (21:17 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Tue, 21 Aug 2012 18:31:53 +0000 (21:31 +0300)
include/vlc_media_library.h
src/libvlccore.sym
src/missing.c

index fee0af9b40f6f896ede80dd5a3f7d7b4ba022f5a..e1835295c0465eff7f404fbcaec83d58211410d0 100644 (file)
@@ -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
index 7c193b06500191bef71d56d8cbbaff33da0c82d8..e3b451920e0131d509b91caecbb7cabfcf5ccaf1 100644 (file)
@@ -226,8 +226,6 @@ vlc_UrlClean
 vlc_path2uri
 make_path
 mdate
-ml_Create
-ml_Destroy
 ml_Get
 media_New
 ml_OpConnectChilds
index d58668e37cdfb38e66b627a41e0507d8d1021125..2bd3dd172ef9b59ad986d9a9e5fc130cc2f11a00 100644 (file)
@@ -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 );