X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_charset.h;h=8674aeed8e2b446657f5f7345f43b13f7990e9b9;hb=12ade3e3bc975d5426ba4af155b7372c31093b31;hp=8e2955db7aaf38e86288ccbf0993d82ade21bc3f;hpb=f563f5064dc78d02ff095224b6f7279a072141d8;p=vlc diff --git a/include/vlc_charset.h b/include/vlc_charset.h index 8e2955db7a..8674aeed8e 100644 --- a/include/vlc_charset.h +++ b/include/vlc_charset.h @@ -2,7 +2,7 @@ * charset.h: Unicode UTF-8 wrappers function ***************************************************************************** * Copyright (C) 2003-2005 the VideoLAN team - * Copyright © 2005-2006 Rémi Denis-Courmont + * Copyright © 2005-2010 Rémi Denis-Courmont * $Id$ * * Author: Rémi Denis-Courmont @@ -31,8 +31,6 @@ */ #include -#include -#include VLC_EXPORT( void, LocaleFree, ( const char * ) ); VLC_EXPORT( char *, FromLocale, ( const char * ) LIBVLC_USED ); @@ -40,29 +38,9 @@ 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, ... ) 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 ) ); -VLC_EXPORT( int, utf8_unlink, ( const char *filename ) ); -int utf8_rename( const char *, const char * ); - -#if defined( WIN32 ) && !defined( UNDER_CE ) -# define stat _stati64 -#endif - -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 *, ... ) LIBVLC_FORMAT( 2, 3 ) ); -VLC_EXPORT( int, utf8_mkstemp, ( char * ) ); - VLC_EXPORT( char *, EnsureUTF8, ( char * ) ); VLC_EXPORT( const char *, IsUTF8, ( const char * ) LIBVLC_USED ); @@ -76,10 +54,24 @@ static inline char *FromWide (const wchar_t *wide) char *out = (char *)malloc (len); - if (out) + if (likely(out)) WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL); return out; } + +LIBVLC_USED +static inline wchar_t *ToWide (const char *utf8) +{ + int len = MultiByteToWideChar (CP_UTF8, 0, utf8, -1, NULL, 0); + if (len == 0) + return NULL; + + wchar_t *out = (wchar_t *)malloc (len * sizeof (wchar_t)); + + if (likely(out)) + MultiByteToWideChar (CP_UTF8, 0, utf8, -1, out, len); + return out; +} #endif /**