Commit 2252bf63 authored by Filippo Carone's avatar Filippo Carone

user data pointer added to callback structure

parent ed3c1eb1
...@@ -51,6 +51,7 @@ struct libvlc_callback_entry_t ...@@ -51,6 +51,7 @@ struct libvlc_callback_entry_t
{ {
libvlc_callback_t callback; libvlc_callback_t callback;
libvlc_event_type_t eventType; libvlc_event_type_t eventType;
void *p_user_data;
}; };
struct libvlc_callback_entry_list_t struct libvlc_callback_entry_list_t
...@@ -66,7 +67,7 @@ struct libvlc_instance_t ...@@ -66,7 +67,7 @@ struct libvlc_instance_t
vlm_t *p_vlm; vlm_t *p_vlm;
int b_playlist_locked; int b_playlist_locked;
vlc_mutex_t instance_lock; vlc_mutex_t instance_lock;
struct libvlc_callback_entry_list_t * p_callback_list; struct libvlc_callback_entry_list_t *p_callback_list;
}; };
......
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