]> git.sesse.net Git - vlc/blobdiff - src/libvlc.h
Use verb is the comment
[vlc] / src / libvlc.h
index 9b2e991488f382cccd405a4ca6c22fa8d4d694ff..7ae84def8ec147862fb3d217cdae6d64e9ce3776 100644 (file)
@@ -49,8 +49,6 @@ uint32_t CPUCapabilities( void );
 /*
  * Unicode stuff
  */
-int utf8_mkdir( const char *filename );
-
 
 /*
  * LibVLC objects stuff
@@ -110,8 +108,15 @@ struct vlc_object_internals_t
     int             i_vars;
 
     /* Thread properties, if any */
-    vlc_thread_t thread_id;
-    vlc_bool_t   b_thread;
+    vlc_thread_t    thread_id;
+    vlc_bool_t      b_thread;
+
+    /* Objects thread synchronization */
+    int             pipes[2];
+
+    /* Objects management */
+    unsigned        i_refcount;
+    vlc_bool_t      b_attached;
 };