From: Pierre d'Herbemont Date: Tue, 28 Aug 2007 23:34:44 +0000 (+0000) Subject: libvlc_internal.h: We have to put media_list_path here after all. We may want to... X-Git-Tag: 0.9.0-test0~6080 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=81064e4906c5fcb4aa9ed0e9fa392fda62f824a9;p=vlc libvlc_internal.h: We have to put media_list_path here after all. We may want to privatize a bit the different libvlc types by defining, types that can be privatized, directly in the .c file. (or in a per-object .h file). --- diff --git a/src/control/libvlc_internal.h b/src/control/libvlc_internal.h index 65909e7b06..79c1b6d3df 100644 --- a/src/control/libvlc_internal.h +++ b/src/control/libvlc_internal.h @@ -49,10 +49,13 @@ VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_boo VLC_EXPORT (void, libvlc_event_init, ( libvlc_instance_t *, libvlc_exception_t * ) ); VLC_EXPORT (void, libvlc_event_fini, ( libvlc_instance_t *, libvlc_exception_t * ) ); + /*************************************************************************** * Opaque structures for libvlc API ***************************************************************************/ +typedef int * libvlc_media_list_path_t; /* (Media List Player Internal) */ + typedef enum libvlc_lock_state_t { libvlc_Locked, diff --git a/src/control/media_list_path.h b/src/control/media_list_path.h index 238e8d0143..209b1eb0cd 100644 --- a/src/control/media_list_path.h +++ b/src/control/media_list_path.h @@ -25,12 +25,6 @@ #ifndef _LIBVLC_MEDIA_LIST_PATH_H #define _LIBVLC_MEDIA_LIST_PATH_H 1 -/************************************************************************** - * Definition (Media List Player Internal) - **************************************************************************/ -typedef int * libvlc_media_list_path_t; - - /************************************************************************** * path_empty (Media List Player Internal) **************************************************************************/