]> git.sesse.net Git - vlc/commitdiff
Remove VLC_INTERNAL
authorRémi Denis-Courmont <rem@videolan.org>
Sat, 24 May 2008 08:19:42 +0000 (11:19 +0300)
committerRémi Denis-Courmont <rem@videolan.org>
Sat, 24 May 2008 08:19:42 +0000 (11:19 +0300)
I should not have put internal stuff into the header files anyway

include/vlc_common.h

index a5a449e29338179a699bcf8a4293ee47f3ea4bb9..0be1b3d2da64fde0de2e7e9b603a48e7833ba10d 100644 (file)
@@ -391,32 +391,26 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *,      /* variable's object */
 #  ifdef __cplusplus
 #    define VLC_PUBLIC_API extern "C" __declspec(dllexport)
 #    define   VLC_EXPORT( type, name, args ) extern "C" __declspec(dllexport) type name args
-#    define VLC_INTERNAL( type, name, args ) extern "C" type name args
 #  else
 #    define VLC_PUBLIC_API extern __declspec(dllexport)
 #    define   VLC_EXPORT( type, name, args ) __declspec(dllexport) type name args
-#    define VLC_INTERNAL( type, name, args ) type name args
 #  endif
 #else
 #  ifdef __cplusplus
 #    ifdef HAVE_ATTRIBUTE_VISIBILITY
 #      define VLC_PUBLIC_API extern "C" __attribute__((visibility("default")))
 #      define   VLC_EXPORT( type, name, args ) extern "C" __attribute__((visibility("default"))) type name args
-#      define VLC_INTERNAL( type, name, args ) extern "C" __attribute__((visibility("hidden"))) type name args
 #    else
 #      define VLC_PUBLIC_API extern "C"
 #      define   VLC_EXPORT( type, name, args ) extern "C" type name args
-#      define VLC_INTERNAL( type, name, args ) extern "C" type name args
 #    endif
 #  else
 #    ifdef HAVE_ATTRIBUTE_VISIBILITY
 #      define VLC_PUBLIC_API extern __attribute__((visibility("default")))
 #      define   VLC_EXPORT( type, name, args ) __attribute__((visibility("default"))) type name args
-#      define VLC_INTERNAL( type, name, args ) __attribute__((visibility("hidden"))) type name args
 #    else
 #      define VLC_PUBLIC_API extern
 #      define   VLC_EXPORT( type, name, args ) extern type name args
-#      define VLC_INTERNAL( type, name, args ) type name args
 #    endif
 #  endif
 #endif