[vlc-devel] commit: VLC_PRIVATE_API: no-op, removed ( Rémi Denis-Courmont )
git version control
git at videolan.org
Tue May 27 18:00:03 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rem at videolan.org> | Tue May 27 19:01:38 2008 +0300| [c6c6c0e3a86f8c3c75ecc1779164e143727ac9e6]
VLC_PRIVATE_API: no-op, removed
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c6c6c0e3a86f8c3c75ecc1779164e143727ac9e6
---
include/vlc_common.h | 1 -
src/control/libvlc_internal.h | 36 ++++++++++++++++++------------------
2 files changed, 18 insertions(+), 19 deletions(-)
diff --git a/include/vlc_common.h b/include/vlc_common.h
index 6faf557..bbaf5e1 100644
--- a/include/vlc_common.h
+++ b/include/vlc_common.h
@@ -398,7 +398,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
# define LIBVLC_EXPORT
#endif
#define VLC_PUBLIC_API LIBVLC_EXTERN LIBVLC_EXPORT
-#define VLC_PRIVATE_API LIBVLC_EXTERN
#define VLC_EXPORT( type, name, args ) \
LIBVLC_EXTERN LIBVLC_EXPORT type name args
diff --git a/src/control/libvlc_internal.h b/src/control/libvlc_internal.h
index 5c26ff6..fa4c68b 100644
--- a/src/control/libvlc_internal.h
+++ b/src/control/libvlc_internal.h
@@ -257,45 +257,45 @@ typedef struct libvlc_event_manager_t
/***************************************************************************
* Other internal functions
***************************************************************************/
-VLC_PRIVATE_API input_thread_t *libvlc_get_input_thread(
+input_thread_t *libvlc_get_input_thread(
libvlc_media_player_t *,
libvlc_exception_t * );
/* Media instance */
-VLC_PRIVATE_API libvlc_media_player_t *
+libvlc_media_player_t *
libvlc_media_player_new_from_input_thread( libvlc_instance_t *,
input_thread_t *,
libvlc_exception_t * );
-VLC_PRIVATE_API void libvlc_media_player_destroy(
+void libvlc_media_player_destroy(
libvlc_media_player_t * );
/* Media Descriptor */
-VLC_PRIVATE_API libvlc_media_t * libvlc_media_new_from_input_item(
+libvlc_media_t * libvlc_media_new_from_input_item(
libvlc_instance_t *, input_item_t *,
libvlc_exception_t * );
-VLC_PRIVATE_API void libvlc_media_set_state(
+void libvlc_media_set_state(
libvlc_media_t *, libvlc_state_t,
libvlc_exception_t * );
/* Media List */
-VLC_PRIVATE_API void _libvlc_media_list_add_media(
+void _libvlc_media_list_add_media(
libvlc_media_list_t * p_mlist,
libvlc_media_t * p_md,
libvlc_exception_t * p_e );
-VLC_PRIVATE_API void _libvlc_media_list_insert_media(
+void _libvlc_media_list_insert_media(
libvlc_media_list_t * p_mlist,
libvlc_media_t * p_md, int index,
libvlc_exception_t * p_e );
-VLC_PRIVATE_API void _libvlc_media_list_remove_index(
+void _libvlc_media_list_remove_index(
libvlc_media_list_t * p_mlist, int index,
libvlc_exception_t * p_e );
/* Media List View */
-VLC_PRIVATE_API libvlc_media_list_view_t * libvlc_media_list_view_new(
+libvlc_media_list_view_t * libvlc_media_list_view_new(
libvlc_media_list_t * p_mlist,
libvlc_media_list_view_count_func_t pf_count,
libvlc_media_list_view_item_at_index_func_t pf_item_at_index,
@@ -305,41 +305,41 @@ VLC_PRIVATE_API libvlc_media_list_view_t * libvlc_media_list_view_new(
void * this_view_data,
libvlc_exception_t * p_e );
-VLC_PRIVATE_API void libvlc_media_list_view_set_ml_notification_callback(
+void libvlc_media_list_view_set_ml_notification_callback(
libvlc_media_list_view_t * p_mlv,
void (*item_added)(const libvlc_event_t *, libvlc_media_list_view_t *),
void (*item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *) );
-VLC_PRIVATE_API void libvlc_media_list_view_will_delete_item(
+void libvlc_media_list_view_will_delete_item(
libvlc_media_list_view_t * p_mlv,
libvlc_media_t * p_item, int index );
-VLC_PRIVATE_API void libvlc_media_list_view_item_deleted(
+void libvlc_media_list_view_item_deleted(
libvlc_media_list_view_t * p_mlv,
libvlc_media_t * p_item, int index );
-VLC_PRIVATE_API void libvlc_media_list_view_will_add_item (
+void libvlc_media_list_view_will_add_item (
libvlc_media_list_view_t * p_mlv,
libvlc_media_t * p_item, int index );
-VLC_PRIVATE_API void libvlc_media_list_view_item_added(
+void libvlc_media_list_view_item_added(
libvlc_media_list_view_t * p_mlv,
libvlc_media_t * p_item, int index );
/* Events */
-VLC_PRIVATE_API libvlc_event_manager_t * libvlc_event_manager_new(
+libvlc_event_manager_t * libvlc_event_manager_new(
void * p_obj, libvlc_instance_t * p_libvlc_inst,
libvlc_exception_t *p_e );
-VLC_PRIVATE_API void libvlc_event_manager_release(
+void libvlc_event_manager_release(
libvlc_event_manager_t * p_em );
-VLC_PRIVATE_API void libvlc_event_manager_register_event_type(
+void libvlc_event_manager_register_event_type(
libvlc_event_manager_t * p_em,
libvlc_event_type_t event_type,
libvlc_exception_t * p_e );
-VLC_PRIVATE_API void libvlc_event_send(
+void libvlc_event_send(
libvlc_event_manager_t * p_em,
libvlc_event_t * p_event );
More information about the vlc-devel
mailing list