From 22f42ffbd494e1c5643b2edd8c042a33bd9c2f04 Mon Sep 17 00:00:00 2001 From: Filippo Carone Date: Thu, 15 Feb 2007 18:17:57 +0000 Subject: [PATCH] libvlc_Internal* need to be exported for libvlc-control --- src/control/libvlc_internal.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/control/libvlc_internal.h b/src/control/libvlc_internal.h index 7769538c97..6da3d6376a 100644 --- a/src/control/libvlc_internal.h +++ b/src/control/libvlc_internal.h @@ -34,13 +34,13 @@ extern "C" { /*************************************************************************** * Internal creation and destruction functions ***************************************************************************/ -libvlc_int_t *libvlc_InternalCreate( void ); -int libvlc_InternalInit( libvlc_int_t *, int, char *ppsz_argv[] ); -int libvlc_InternalCleanup( libvlc_int_t * ); -int libvlc_InternalDestroy( libvlc_int_t *, vlc_bool_t ); +VLC_EXPORT (libvlc_int_t *, libvlc_InternalCreate, ( void ) ); +VLC_EXPORT (int, libvlc_InternalInit, ( libvlc_int_t *, int, char *ppsz_argv[] ) ); +VLC_EXPORT (int, libvlc_InternalCleanup, ( libvlc_int_t * ) ); +VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, vlc_bool_t ) ); -int libvlc_InternalAddIntf( libvlc_int_t *, const char *, vlc_bool_t, - vlc_bool_t, int, const char *const * ); +VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_bool_t, + vlc_bool_t, int, const char *const * ) ); /*************************************************************************** * Opaque structures for libvlc API -- 2.39.2