Commit d6346a3b authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

control/libvlc_internal: Dump bool as it doesn't work everywhere.

parent 012cc61a
...@@ -75,10 +75,11 @@ struct libvlc_instance_t ...@@ -75,10 +75,11 @@ struct libvlc_instance_t
struct libvlc_callback_entry_list_t *p_callback_list; struct libvlc_callback_entry_list_t *p_callback_list;
}; };
struct libvlc_media_descriptor_t { struct libvlc_media_descriptor_t
bool b_preparsed; {
input_item_t * p_input_item; int b_preparsed;
libvlc_instance_t * p_libvlc_instance; input_item_t *p_input_item;
libvlc_instance_t *p_libvlc_instance;
}; };
struct libvlc_input_t struct libvlc_input_t
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment