]> git.sesse.net Git - vlc/blobdiff - src/libvlc.h
Replace intf_StopThread() with intf_DestroyAll()
[vlc] / src / libvlc.h
index 07bc6490f190f50d1fef4b2858659654ca6edfce..f6d44026f329d9de571dc32f2fc8777ac2d538a4 100644 (file)
@@ -54,7 +54,6 @@ void system_End       ( libvlc_int_t * );
 
 vlc_list_t *vlc_list_find( vlc_object_t *, int, int );
 #define VLC_OBJECT_INTF        (-4)
-#define VLC_OBJECT_PACKETIZER  (-13)
 
 /*
  * Threads subsystem
@@ -201,9 +200,6 @@ typedef struct libvlc_priv_t
     libvlc_int_t       public_data;
     vlc_cond_t         exiting; ///< signaled when VLC wants to exit
 
-    /* Configuration */
-    vlc_mutex_t        config_lock; ///< config file lock
-
     int                i_last_input_id ; ///< Last id of input item
 
     /* Messages */
@@ -237,6 +233,7 @@ static inline libvlc_priv_t *libvlc_priv (libvlc_int_t *libvlc)
 }
 
 void playlist_ServicesDiscoveryKillAll( playlist_t *p_playlist );
+void intf_DestroyAll( libvlc_int_t * );
 
 #define libvlc_stats( o ) (libvlc_priv((VLC_OBJECT(o))->p_libvlc)->b_stats)