vlc_common.h: VLC_EXPORT should have extern if there is no visibility support.

This commit is contained in:
Pierre d'Herbemont 2008-02-10 01:04:07 +00:00
parent 5daa9d2949
commit 897ac981f3

View File

@ -487,7 +487,7 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
# else
# define VLC_PUBLIC_API extern
# define VLC_PRIVATE_API extern
# define VLC_EXPORT( type, name, args ) type name args
# define VLC_EXPORT( type, name, args ) extern type name args
# define VLC_INTERNAL( type, name, args ) type name args
# endif
# endif