Commit 9f442389 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove #define vlc_foobar NULL from the gone era of vlc_symbol

parent 03efb5df
...@@ -822,22 +822,16 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -822,22 +822,16 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
#ifndef HAVE_STRDUP #ifndef HAVE_STRDUP
# define strdup vlc_strdup # define strdup vlc_strdup
VLC_EXPORT( char *, vlc_strdup, ( const char *s ) ); VLC_EXPORT( char *, vlc_strdup, ( const char *s ) );
#elif !defined(__PLUGIN__)
# define vlc_strdup NULL
#endif #endif
#if !defined(HAVE_VASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS) #if !defined(HAVE_VASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS)
# define vasprintf vlc_vasprintf # define vasprintf vlc_vasprintf
VLC_EXPORT( int, vlc_vasprintf, (char **, const char *, va_list ) ); VLC_EXPORT( int, vlc_vasprintf, (char **, const char *, va_list ) );
#elif !defined(__PLUGIN__)
# define vlc_vasprintf NULL
#endif #endif
#if !defined(HAVE_ASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS) #if !defined(HAVE_ASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS)
# define asprintf vlc_asprintf # define asprintf vlc_asprintf
VLC_EXPORT( int, vlc_asprintf, (char **, const char *, ... ) ATTRIBUTE_FORMAT( 2, 3 ) ); VLC_EXPORT( int, vlc_asprintf, (char **, const char *, ... ) ATTRIBUTE_FORMAT( 2, 3 ) );
#elif !defined(__PLUGIN__)
# define vlc_asprintf NULL
#endif #endif
#ifndef HAVE_STRNDUP #ifndef HAVE_STRNDUP
...@@ -849,29 +843,16 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -849,29 +843,16 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
# define strndup vlc_strndup # define strndup vlc_strndup
VLC_EXPORT( char *, vlc_strndup, ( const char *s, size_t n ) ); VLC_EXPORT( char *, vlc_strndup, ( const char *s, size_t n ) );
# endif # endif
#elif !defined(__PLUGIN__)
# define vlc_strndup NULL
#endif
#ifndef HAVE_STRNLEN
# define strnlen vlc_strnlen
VLC_EXPORT( size_t, vlc_strnlen, ( const char *, size_t ) );
#elif !defined(__PLUGIN__)
# define vlc_strnlen NULL
#endif #endif
#ifndef HAVE_STRLCPY #ifndef HAVE_STRLCPY
# define strlcpy vlc_strlcpy # define strlcpy vlc_strlcpy
VLC_EXPORT( size_t, vlc_strlcpy, ( char *, const char *, size_t ) ); VLC_EXPORT( size_t, vlc_strlcpy, ( char *, const char *, size_t ) );
#elif !defined(__PLUGIN__)
# define vlc_strlcpy NULL
#endif #endif
#ifndef HAVE_ATOF #ifndef HAVE_ATOF
# define atof vlc_atof # define atof vlc_atof
VLC_EXPORT( double, vlc_atof, ( const char *nptr ) ); VLC_EXPORT( double, vlc_atof, ( const char *nptr ) );
#elif !defined(__PLUGIN__)
# define vlc_atof NULL
#endif #endif
#ifndef HAVE_STRTOF #ifndef HAVE_STRTOF
...@@ -883,15 +864,11 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -883,15 +864,11 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
#ifndef HAVE_ATOLL #ifndef HAVE_ATOLL
# define atoll vlc_atoll # define atoll vlc_atoll
VLC_EXPORT( int64_t, vlc_atoll, ( const char *nptr ) ); VLC_EXPORT( int64_t, vlc_atoll, ( const char *nptr ) );
#elif !defined(__PLUGIN__)
# define vlc_atoll NULL
#endif #endif
#ifndef HAVE_STRTOLL #ifndef HAVE_STRTOLL
# define strtoll vlc_strtoll # define strtoll vlc_strtoll
VLC_EXPORT( int64_t, vlc_strtoll, ( const char *nptr, char **endptr, int base ) ); VLC_EXPORT( int64_t, vlc_strtoll, ( const char *nptr, char **endptr, int base ) );
#elif !defined(__PLUGIN__)
# define vlc_strtoll NULL
#endif #endif
#if defined(SYS_BEOS) \ #if defined(SYS_BEOS) \
...@@ -902,8 +879,6 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -902,8 +879,6 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
} lldiv_t; } lldiv_t;
# define lldiv vlc_lldiv # define lldiv vlc_lldiv
VLC_EXPORT( lldiv_t, vlc_lldiv, ( long long numer, long long denom ) ); VLC_EXPORT( lldiv_t, vlc_lldiv, ( long long numer, long long denom ) );
#elif !defined(__PLUGIN__)
# define vlc_lldiv NULL
#endif #endif
#ifndef HAVE_SCANDIR #ifndef HAVE_SCANDIR
...@@ -912,16 +887,11 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -912,16 +887,11 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
struct dirent; struct dirent;
VLC_EXPORT( int, vlc_scandir, ( const char *name, struct dirent ***namelist, int (*filter) ( const struct dirent * ), int (*compar) ( const struct dirent **, const struct dirent ** ) ) ); VLC_EXPORT( int, vlc_scandir, ( const char *name, struct dirent ***namelist, int (*filter) ( const struct dirent * ), int (*compar) ( const struct dirent **, const struct dirent ** ) ) );
VLC_EXPORT( int, vlc_alphasort, ( const struct dirent **a, const struct dirent **b ) ); VLC_EXPORT( int, vlc_alphasort, ( const struct dirent **a, const struct dirent **b ) );
#elif !defined(__PLUGIN__)
# define vlc_scandir NULL
# define vlc_alphasort NULL
#endif #endif
#ifndef HAVE_GETENV #ifndef HAVE_GETENV
# define getenv vlc_getenv # define getenv vlc_getenv
VLC_EXPORT( char *, vlc_getenv, ( const char *name ) ); VLC_EXPORT( char *, vlc_getenv, ( const char *name ) );
#elif !defined(__PLUGIN__)
# define vlc_getenv NULL
#endif #endif
#ifndef HAVE_STRCASECMP #ifndef HAVE_STRCASECMP
...@@ -930,12 +900,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -930,12 +900,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
VLC_EXPORT( int, vlc_strcasecmp, ( const char *s1, const char *s2 ) ); VLC_EXPORT( int, vlc_strcasecmp, ( const char *s1, const char *s2 ) );
# else # else
# define strcasecmp stricmp # define strcasecmp stricmp
# if !defined(__PLUGIN__)
# define vlc_strcasecmp NULL
# endif
# endif # endif
#elif !defined(__PLUGIN__)
# define vlc_strcasecmp NULL
#endif #endif
#ifndef HAVE_STRNCASECMP #ifndef HAVE_STRNCASECMP
...@@ -944,12 +909,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -944,12 +909,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
VLC_EXPORT( int, vlc_strncasecmp, ( const char *s1, const char *s2, size_t n ) ); VLC_EXPORT( int, vlc_strncasecmp, ( const char *s1, const char *s2, size_t n ) );
# else # else
# define strncasecmp strnicmp # define strncasecmp strnicmp
# if !defined(__PLUGIN__)
# define vlc_strncasecmp NULL
# endif
# endif # endif
#elif !defined(__PLUGIN__)
# define vlc_strncasecmp NULL
#endif #endif
#ifndef HAVE_STRCASESTR #ifndef HAVE_STRCASESTR
...@@ -958,12 +918,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -958,12 +918,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
VLC_EXPORT( char *, vlc_strcasestr, ( const char *s1, const char *s2 ) ); VLC_EXPORT( char *, vlc_strcasestr, ( const char *s1, const char *s2 ) );
# else # else
# define strcasestr stristr # define strcasestr stristr
# if !defined(__PLUGIN__)
# define vlc_strcasestr NULL
# endif
# endif # endif
#elif !defined(__PLUGIN__)
# define vlc_strcasestr NULL
#endif #endif
#ifndef HAVE_DIRENT_H #ifndef HAVE_DIRENT_H
...@@ -990,12 +945,6 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -990,12 +945,6 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
VLC_INTERNAL( void, vlc_rewinddir, ( void * ) ); VLC_INTERNAL( void, vlc_rewinddir, ( void * ) );
VLC_INTERNAL( void, vlc_seekdir, ( void *, long ) ); VLC_INTERNAL( void, vlc_seekdir, ( void *, long ) );
VLC_INTERNAL( long, vlc_telldir, ( void * ) ); VLC_INTERNAL( long, vlc_telldir, ( void * ) );
#else
# if !defined(__PLUGIN__)
# define vlc_opendir NULL
# define vlc_readdir NULL
# define vlc_closedir NULL
# endif
#endif #endif
#if defined (WIN32) #if defined (WIN32)
...@@ -1015,8 +964,6 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -1015,8 +964,6 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
# define rewinddir vlc_rewinddir # define rewinddir vlc_rewinddir
# define seekdir vlc_seekdir # define seekdir vlc_seekdir
# define telldir vlc_telldir # define telldir vlc_telldir
#elif !defined(__PLUGIN__)
# define vlc_wclosedir NULL
#endif #endif
/* Format type specifiers for 64 bits numbers */ /* Format type specifiers for 64 bits numbers */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment