Commit ee08622b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

I wonder why use a libvlc_time_t for a boolean variable...

Who promised not to break libvlc now?
parent 8030cf38
......@@ -145,11 +145,11 @@ typedef struct libvlc_event_t
} media_player_title_changed;
struct
{
libvlc_time_t new_seekable;
uint64_t new_seekable; /* FIXME: that's a boolean! */
} media_player_seekable_changed;
struct
{
libvlc_time_t new_pausable;
uint64_t new_pausable; /* FIXME: that's a BOOL!!! */
} media_player_pausable_changed;
/* media list */
......@@ -196,16 +196,6 @@ typedef struct libvlc_event_t
int index;
} media_list_view_will_delete_item;
/* media discoverer */
struct
{
void * unused;
} media_media_discoverer_started;
struct
{
void * unused;
} media_media_discoverer_ended;
/* snapshot taken */
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