Commit e586841b authored by Rémi Duraffort's avatar Rémi Duraffort

libvlc_events: use int instead of uint64_t (using booleans here might be...

libvlc_events: use int instead of uint64_t (using booleans here might be dangerous with the bindings).
parent 16bc4dd9
...@@ -173,11 +173,11 @@ struct libvlc_event_t ...@@ -173,11 +173,11 @@ struct libvlc_event_t
} media_player_title_changed; } media_player_title_changed;
struct struct
{ {
uint64_t new_seekable; /* FIXME: that's a boolean! */ int new_seekable;
} media_player_seekable_changed; } media_player_seekable_changed;
struct struct
{ {
uint64_t new_pausable; /* FIXME: that's a BOOL!!! */ int new_pausable;
} media_player_pausable_changed; } media_player_pausable_changed;
/* media list */ /* media list */
...@@ -229,7 +229,7 @@ struct libvlc_event_t ...@@ -229,7 +229,7 @@ struct libvlc_event_t
{ {
libvlc_media_t * item; libvlc_media_t * item;
} media_list_player_next_item_set; } media_list_player_next_item_set;
/* snapshot taken */ /* snapshot taken */
struct struct
{ {
......
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