]> git.sesse.net Git - vlc/blobdiff - src/libvlc.h
Provide the trust value to var_OptionParse
[vlc] / src / libvlc.h
index 4c1178b22cd8205e5eb0d5f48e776f453e8b5315..b82d77f73b86a9c08b579adfaefc96ce9b242472 100644 (file)
@@ -25,6 +25,8 @@
 #ifndef LIBVLC_LIBVLC_H
 # define LIBVLC_LIBVLC_H 1
 
+# include <stdbool.h>
+
 extern const char vlc_usage[];
 
 extern const struct hotkey libvlc_hotkeys[];
@@ -154,6 +156,6 @@ extern const size_t libvlc_config_count;
 /*
  * Variables stuff
  */
-void var_OptionParse (vlc_object_t *, const char *);
+void var_OptionParse (vlc_object_t *, const char *, bool trusted);
 
 #endif