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

libvlc: Prefix internal function with VLC_PRIVATE_API.

parent eb01699c
...@@ -261,41 +261,46 @@ typedef struct libvlc_event_manager_t ...@@ -261,41 +261,46 @@ typedef struct libvlc_event_manager_t
/*************************************************************************** /***************************************************************************
* Other internal functions * Other internal functions
***************************************************************************/ ***************************************************************************/
input_thread_t *libvlc_get_input_thread( struct libvlc_media_player_t *, VLC_PRIVATE_API input_thread_t *libvlc_get_input_thread(
libvlc_media_player_t *,
libvlc_exception_t * ); libvlc_exception_t * );
/* Media instance */ /* Media instance */
libvlc_media_player_t * VLC_PRIVATE_API libvlc_media_player_t *
libvlc_media_player_new_from_input_thread( struct libvlc_instance_t *, libvlc_media_player_new_from_input_thread( libvlc_instance_t *,
input_thread_t *, input_thread_t *,
libvlc_exception_t * ); libvlc_exception_t * );
void libvlc_media_player_destroy( libvlc_media_player_t * ); VLC_PRIVATE_API void libvlc_media_player_destroy(
libvlc_media_player_t * );
/* Media Descriptor */ /* Media Descriptor */
libvlc_media_t * VLC_PRIVATE_API libvlc_media_t * libvlc_media_new_from_input_item(
libvlc_media_new_from_input_item( struct libvlc_instance_t *, input_item_t *, libvlc_instance_t *, input_item_t *,
libvlc_exception_t * ); libvlc_exception_t * );
void libvlc_media_set_state( libvlc_media_t *, libvlc_state_t, VLC_PRIVATE_API void libvlc_media_set_state(
libvlc_media_t *, libvlc_state_t,
libvlc_exception_t * ); libvlc_exception_t * );
/* Media List */ /* Media List */
void _libvlc_media_list_add_media( libvlc_media_list_t * p_mlist, VLC_PRIVATE_API void _libvlc_media_list_add_media(
libvlc_media_list_t * p_mlist,
libvlc_media_t * p_md, libvlc_media_t * p_md,
libvlc_exception_t * p_e ); libvlc_exception_t * p_e );
void VLC_PRIVATE_API void _libvlc_media_list_insert_media(
_libvlc_media_list_insert_media( libvlc_media_list_t * p_mlist, libvlc_media_list_t * p_mlist,
libvlc_media_t * p_md, int index, libvlc_media_t * p_md, int index,
libvlc_exception_t * p_e ); libvlc_exception_t * p_e );
void _libvlc_media_list_remove_index( libvlc_media_list_t * p_mlist, int index, VLC_PRIVATE_API void _libvlc_media_list_remove_index(
libvlc_media_list_t * p_mlist, int index,
libvlc_exception_t * p_e ); libvlc_exception_t * p_e );
/* Media List View */ /* Media List View */
libvlc_media_list_view_t * VLC_PRIVATE_API libvlc_media_list_view_t * libvlc_media_list_view_new(
libvlc_media_list_view_new( libvlc_media_list_t * p_mlist, libvlc_media_list_t * p_mlist,
libvlc_media_list_view_count_func_t pf_count, libvlc_media_list_view_count_func_t pf_count,
libvlc_media_list_view_item_at_index_func_t pf_item_at_index, libvlc_media_list_view_item_at_index_func_t pf_item_at_index,
libvlc_media_list_view_children_at_index_func_t pf_children_at_index, libvlc_media_list_view_children_at_index_func_t pf_children_at_index,
...@@ -304,35 +309,42 @@ libvlc_media_list_view_new( libvlc_media_list_t * p_mlist, ...@@ -304,35 +309,42 @@ libvlc_media_list_view_new( libvlc_media_list_t * p_mlist,
void * this_view_data, void * this_view_data,
libvlc_exception_t * p_e ); libvlc_exception_t * p_e );
void VLC_PRIVATE_API void libvlc_media_list_view_set_ml_notification_callback(
libvlc_media_list_view_set_ml_notification_callback(
libvlc_media_list_view_t * p_mlv, libvlc_media_list_view_t * p_mlv,
void (*item_added)(const libvlc_event_t *, libvlc_media_list_view_t *), void (*item_added)(const libvlc_event_t *, libvlc_media_list_view_t *),
void (*item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *) ); void (*item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *) );
void VLC_PRIVATE_API void libvlc_media_list_view_will_delete_item(
libvlc_media_list_view_will_delete_item( libvlc_media_list_view_t * p_mlv, libvlc_media_list_view_t * p_mlv,
libvlc_media_t * p_item, int index ); libvlc_media_t * p_item, int index );
void libvlc_media_list_view_item_deleted( libvlc_media_list_view_t * p_mlv,
VLC_PRIVATE_API void libvlc_media_list_view_item_deleted(
libvlc_media_list_view_t * p_mlv,
libvlc_media_t * p_item, int index ); libvlc_media_t * p_item, int index );
void
libvlc_media_list_view_will_add_item ( libvlc_media_list_view_t * p_mlv, VLC_PRIVATE_API void libvlc_media_list_view_will_add_item (
libvlc_media_list_view_t * p_mlv,
libvlc_media_t * p_item, int index ); libvlc_media_t * p_item, int index );
void libvlc_media_list_view_item_added( libvlc_media_list_view_t * p_mlv,
VLC_PRIVATE_API void libvlc_media_list_view_item_added(
libvlc_media_list_view_t * p_mlv,
libvlc_media_t * p_item, int index ); libvlc_media_t * p_item, int index );
/* Events */ /* Events */
libvlc_event_manager_t * VLC_PRIVATE_API libvlc_event_manager_t * libvlc_event_manager_new(
libvlc_event_manager_new( void * p_obj, libvlc_instance_t * p_libvlc_inst, void * p_obj, libvlc_instance_t * p_libvlc_inst,
libvlc_exception_t *p_e ); libvlc_exception_t *p_e );
void libvlc_event_manager_release( libvlc_event_manager_t * p_em ); VLC_PRIVATE_API void libvlc_event_manager_release(
libvlc_event_manager_t * p_em );
void libvlc_event_manager_register_event_type( libvlc_event_manager_t * p_em, VLC_PRIVATE_API void libvlc_event_manager_register_event_type(
libvlc_event_manager_t * p_em,
libvlc_event_type_t event_type, libvlc_event_type_t event_type,
libvlc_exception_t * p_e ); libvlc_exception_t * p_e );
void libvlc_event_send( libvlc_event_manager_t * p_em, VLC_PRIVATE_API void libvlc_event_send(
libvlc_event_manager_t * p_em,
libvlc_event_t * p_event ); libvlc_event_t * p_event );
......
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