Commit 86f004eb authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

control/media_descriptor.c: Expose event_manager().

parent 44d5f298
......@@ -237,6 +237,10 @@ VLC_PUBLIC_API libvlc_media_list_t *
libvlc_media_descriptor_subitems( libvlc_media_descriptor_t *p_md,
libvlc_exception_t *p_e );
VLC_PUBLIC_APIlibvlc_event_manager_t *
libvlc_media_descriptor_event_manager( libvlc_media_descriptor_t * p_md,
libvlc_exception_t * p_e )
/** @}*/
/*****************************************************************************
......
......@@ -449,3 +449,13 @@ libvlc_media_descriptor_subitems( libvlc_media_descriptor_t * p_md,
libvlc_media_list_retain( p_md->p_subitems );
return p_md->p_subitems;
}
/**************************************************************************
* event_manager
**************************************************************************/
libvlc_event_manager_t *
libvlc_media_descriptor_event_manager( libvlc_media_descriptor_t * p_md,
libvlc_exception_t * p_e )
{
return p_md->p_event_manager;
}
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