]> git.sesse.net Git - vlc/commitdiff
control/libvlc_internal: Dump bool as it doesn't work everywhere.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 17 Jun 2007 17:21:26 +0000 (17:21 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 17 Jun 2007 17:21:26 +0000 (17:21 +0000)
src/control/libvlc_internal.h

index 79e3c76b4a9e7e782eefdfdd27418ef1559793fe..2e7b5c0a66d27bb96566dd8dc942ce56f7816b24 100644 (file)
@@ -75,10 +75,11 @@ struct libvlc_instance_t
     struct libvlc_callback_entry_list_t *p_callback_list;
 };
 
-struct libvlc_media_descriptor_t {
-    bool                b_preparsed;
-    input_item_t      * p_input_item;
-    libvlc_instance_t * p_libvlc_instance;
+struct libvlc_media_descriptor_t
+{
+    int                b_preparsed;
+    input_item_t      *p_input_item;
+    libvlc_instance_t *p_libvlc_instance;
 };
 
 struct libvlc_input_t