]> git.sesse.net Git - vlc/blobdiff - src/libvlc.h
svn:ignore
[vlc] / src / libvlc.h
index bb87dcd7a16fb327e8fc67e16bb0ec6b84373129..cbc7b1af0012b62edf14a5c74e1da91b24d02d94 100644 (file)
@@ -110,6 +110,7 @@ struct vlc_object_internals_t
 
     /* Objects thread synchronization */
     int             pipes[2];
+    vlc_spinlock_t  spin;
 
     /* Objects management */
     unsigned        i_refcount;
@@ -173,7 +174,12 @@ struct module_config_t
 };
 #endif
 
-extern const module_config_t libvlc_config[];
+extern module_config_t libvlc_config[];
 extern const size_t libvlc_config_count;
 
+/*
+ * Variables stuff
+ */
+void var_OptionParse (vlc_object_t *, const char *);
+
 #endif