X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_charset.h;h=c122a8d862547414f70393f7c319168112b34ab5;hb=1df015beff013d3fae00a4fae905ef28c4df10ce;hp=69b65b9e0a1bd67fd79de2aaf2fc2252fc739bd8;hpb=7d1d75f350f043298c46c90fd7e2ff29684387b5;p=vlc diff --git a/include/vlc_charset.h b/include/vlc_charset.h index 69b65b9e0a..c122a8d862 100644 --- a/include/vlc_charset.h +++ b/include/vlc_charset.h @@ -22,28 +22,29 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif +#ifndef VLC_CHARSET_H +#define VLC_CHARSET_H 1 -#ifndef __VLC_CHARSET_H -#define __VLC_CHARSET_H 1 +/** + * \file + * This files handles locale conversions in vlc + */ #include #include #include VLC_EXPORT( void, LocaleFree, ( const char * ) ); -VLC_EXPORT( char *, FromLocale, ( const char * ) ); -VLC_EXPORT( char *, FromLocaleDup, ( const char * ) ); -VLC_EXPORT( char *, ToLocale, ( const char * ) ); -VLC_EXPORT( char *, ToLocaleDup, ( const char * ) ); +VLC_EXPORT( char *, FromLocale, ( const char * ) LIBVLC_USED ); +VLC_EXPORT( char *, FromLocaleDup, ( const char * ) LIBVLC_USED ); +VLC_EXPORT( char *, ToLocale, ( const char * ) LIBVLC_USED ); +VLC_EXPORT( char *, ToLocaleDup, ( const char * ) LIBVLC_USED ); /* TODO: move all of this to "vlc_fs.h" or something like that */ -VLC_EXPORT( int, utf8_open, ( const char *filename, int flags, mode_t mode ) ); -VLC_EXPORT( FILE *, utf8_fopen, ( const char *filename, const char *mode ) ); -VLC_EXPORT( DIR *, utf8_opendir, ( const char *dirname ) ); -VLC_EXPORT( char *, utf8_readdir, ( DIR *dir ) ); +VLC_EXPORT( int, utf8_open, ( const char *filename, int flags, mode_t mode ) LIBVLC_USED ); +VLC_EXPORT( FILE *, utf8_fopen, ( const char *filename, const char *mode ) LIBVLC_USED ); +VLC_EXPORT( DIR *, utf8_opendir, ( const char *dirname ) LIBVLC_USED ); +VLC_EXPORT( char *, utf8_readdir, ( DIR *dir ) LIBVLC_USED ); VLC_EXPORT( int, utf8_loaddir, ( DIR *dir, char ***namelist, int (*select)( const char * ), int (*compar)( const char **, const char ** ) ) ); VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*select)( const char * ), int (*compar)( const char **, const char ** ) ) ); VLC_EXPORT( int, utf8_mkdir, ( const char *filename, mode_t mode ) ); @@ -57,12 +58,13 @@ VLC_EXPORT( int, utf8_stat, ( const char *filename, struct stat *buf ) ); VLC_EXPORT( int, utf8_lstat, ( const char *filename, struct stat *buf ) ); VLC_EXPORT( int, utf8_vfprintf, ( FILE *stream, const char *fmt, va_list ap ) ); -VLC_EXPORT( int, utf8_fprintf, ( FILE *, const char *, ... ) ATTRIBUTE_FORMAT( 2, 3 ) ); +VLC_EXPORT( int, utf8_fprintf, ( FILE *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ) ); VLC_EXPORT( char *, EnsureUTF8, ( char * ) ); -VLC_EXPORT( const char *, IsUTF8, ( const char * ) ); +VLC_EXPORT( const char *, IsUTF8, ( const char * ) LIBVLC_USED ); #ifdef WIN32 +LIBVLC_USED static inline char *FromWide (const wchar_t *wide) { size_t len = WideCharToMultiByte (CP_UTF8, 0, wide, -1, NULL, 0, NULL, NULL); @@ -71,16 +73,15 @@ static inline char *FromWide (const wchar_t *wide) char *out = (char *)malloc (len); - WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL); + if (out) + WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL); return out; } #endif -VLC_INTERNAL( bool, vlc_current_charset, ( char ** ) ); - -VLC_EXPORT( const char *, GetFallbackEncoding, ( void ) ); +VLC_EXPORT( const char *, GetFallbackEncoding, ( void ) LIBVLC_USED ); -VLC_EXPORT( double, us_strtod, ( const char *, char ** ) ); -VLC_EXPORT( double, us_atof, ( const char * ) ); +VLC_EXPORT( double, us_strtod, ( const char *, char ** ) LIBVLC_USED ); +VLC_EXPORT( double, us_atof, ( const char * ) LIBVLC_USED ); #endif