2003-08-23 20:59:31 +08:00
|
|
|
/*****************************************************************************
|
2006-11-13 00:19:58 +08:00
|
|
|
* charset.h: Unicode UTF-8 wrappers function
|
2003-08-23 20:59:31 +08:00
|
|
|
*****************************************************************************
|
2005-08-05 03:09:15 +08:00
|
|
|
* Copyright (C) 2003-2005 the VideoLAN team
|
2006-11-11 20:15:53 +08:00
|
|
|
* Copyright © 2005-2006 Rémi Denis-Courmont
|
2005-03-03 00:47:31 +08:00
|
|
|
* $Id$
|
2003-08-23 20:59:31 +08:00
|
|
|
*
|
2006-11-13 00:19:58 +08:00
|
|
|
* Author: Rémi Denis-Courmont <rem # videolan,org>
|
2003-08-23 20:59:31 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2004-01-26 02:17:08 +08:00
|
|
|
*
|
2003-08-23 20:59:31 +08:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2006-01-13 07:10:04 +08:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
2003-08-23 20:59:31 +08:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2006-12-03 21:48:21 +08:00
|
|
|
#if !defined( __LIBVLC__ )
|
|
|
|
#error You are not libvlc or one of its plugins. You cannot include this file
|
|
|
|
#endif
|
|
|
|
|
2005-10-10 15:56:33 +08:00
|
|
|
#ifndef __VLC_CHARSET_H
|
|
|
|
#define __VLC_CHARSET_H 1
|
|
|
|
|
2006-08-31 22:55:20 +08:00
|
|
|
#include <stdarg.h>
|
2006-11-04 23:18:57 +08:00
|
|
|
#include <sys/types.h>
|
2006-11-22 04:42:33 +08:00
|
|
|
#include <dirent.h>
|
2006-08-31 22:55:20 +08:00
|
|
|
|
2005-08-04 03:01:44 +08:00
|
|
|
VLC_EXPORT( void, LocaleFree, ( const char * ) );
|
|
|
|
VLC_EXPORT( char *, FromLocale, ( const char * ) );
|
2006-02-13 03:57:48 +08:00
|
|
|
VLC_EXPORT( char *, FromLocaleDup, ( const char * ) );
|
2005-08-04 03:01:44 +08:00
|
|
|
VLC_EXPORT( char *, ToLocale, ( const char * ) );
|
2006-02-13 03:57:48 +08:00
|
|
|
|
2007-01-05 00:37:21 +08:00
|
|
|
/* TODO: move all of this to "vlc_fs.h" or something like that */
|
2006-11-04 23:18:57 +08:00
|
|
|
VLC_EXPORT( int, utf8_open, ( const char *filename, int flags, mode_t mode ) );
|
2006-02-12 05:46:06 +08:00
|
|
|
VLC_EXPORT( FILE *, utf8_fopen, ( const char *filename, const char *mode ) );
|
2006-11-22 04:42:33 +08:00
|
|
|
VLC_EXPORT( DIR *, utf8_opendir, ( const char *dirname ) );
|
2006-11-25 17:59:49 +08:00
|
|
|
VLC_EXPORT( char *, utf8_readdir, ( DIR *dir ) );
|
2007-01-05 00:37:21 +08:00
|
|
|
VLC_EXPORT( int, utf8_loaddir, ( DIR *dir, char ***namelist, int (*select)( const char * ), int (*compar)( const char **, const char ** ) ) );
|
2006-03-27 19:26:50 +08:00
|
|
|
VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*select)( const char * ), int (*compar)( const char **, const char ** ) ) );
|
2006-11-12 20:02:55 +08:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
# 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 ) );
|
2006-02-13 06:45:04 +08:00
|
|
|
VLC_EXPORT( int, utf8_mkdir, ( const char *filename ) );
|
2006-02-13 03:57:48 +08:00
|
|
|
|
2006-08-31 22:55:20 +08:00
|
|
|
VLC_EXPORT( int, utf8_vfprintf, ( FILE *stream, const char *fmt, va_list ap ) );
|
|
|
|
VLC_EXPORT( int, utf8_fprintf, ( FILE *, const char *, ... ) );
|
2006-02-21 20:14:27 +08:00
|
|
|
|
2005-08-04 03:01:44 +08:00
|
|
|
VLC_EXPORT( char *, EnsureUTF8, ( char * ) );
|
2006-03-22 20:26:11 +08:00
|
|
|
VLC_EXPORT( const char *, IsUTF8, ( const char * ) );
|
|
|
|
|
2006-11-11 19:37:21 +08:00
|
|
|
#ifdef WIN32
|
2006-11-11 20:48:49 +08:00
|
|
|
static inline char *FromWide (const wchar_t *wide)
|
|
|
|
{
|
|
|
|
size_t len = WideCharToMultiByte (CP_UTF8, 0, wide, -1, NULL, 0, NULL, NULL);
|
|
|
|
if (len == 0)
|
|
|
|
return NULL;
|
|
|
|
|
2006-11-12 01:10:59 +08:00
|
|
|
char *out = (char *)malloc (len);
|
2006-11-11 20:48:49 +08:00
|
|
|
|
|
|
|
WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
|
|
|
|
return out;
|
|
|
|
}
|
2006-11-11 19:37:21 +08:00
|
|
|
#endif
|
2006-03-22 00:42:34 +08:00
|
|
|
|
2006-11-13 00:19:58 +08:00
|
|
|
VLC_INTERNAL( char *, vlc_fix_readdir, ( const char * ) );
|
|
|
|
VLC_INTERNAL( vlc_bool_t, vlc_current_charset, ( char ** ) );
|
2006-03-08 20:25:29 +08:00
|
|
|
|
2006-03-23 00:05:11 +08:00
|
|
|
VLC_EXPORT( const char *, GetFallbackEncoding, ( void ) );
|
|
|
|
|
2006-11-13 00:19:58 +08:00
|
|
|
VLC_INTERNAL( double, i18n_strtod, ( const char *, char ** ) );
|
|
|
|
VLC_INTERNAL( double, i18n_atof, ( const char * ) );
|
2006-03-09 01:06:59 +08:00
|
|
|
VLC_EXPORT( double, us_strtod, ( const char *, char ** ) );
|
2006-03-08 21:51:31 +08:00
|
|
|
VLC_EXPORT( double, us_atof, ( const char * ) );
|
2004-02-22 07:15:52 +08:00
|
|
|
|
2005-10-10 15:56:33 +08:00
|
|
|
#endif
|