2003-08-23 20:59:31 +08:00
|
|
|
/*****************************************************************************
|
|
|
|
* charset.h: Determine a canonical name for the current locale's character encoding.
|
|
|
|
*****************************************************************************
|
2005-08-05 03:09:15 +08:00
|
|
|
* Copyright (C) 2003-2005 the VideoLAN team
|
2005-03-03 00:47:31 +08:00
|
|
|
* $Id$
|
2003-08-23 20:59:31 +08:00
|
|
|
*
|
|
|
|
* Author: Derk-Jan Hartman <thedj at users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
*****************************************************************************/
|
|
|
|
|
2005-10-10 15:56:33 +08:00
|
|
|
#ifndef __VLC_CHARSET_H
|
|
|
|
#define __VLC_CHARSET_H 1
|
|
|
|
|
2004-02-22 07:15:52 +08:00
|
|
|
# ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
# endif
|
|
|
|
|
2003-08-23 20:59:31 +08:00
|
|
|
VLC_EXPORT( vlc_bool_t, vlc_current_charset, ( char ** ) );
|
2005-08-04 03:01:44 +08:00
|
|
|
VLC_EXPORT( void, LocaleFree, ( const char * ) );
|
|
|
|
VLC_EXPORT( char *, FromLocale, ( const char * ) );
|
|
|
|
VLC_EXPORT( char *, ToLocale, ( const char * ) );
|
2006-02-11 23:13:56 +08:00
|
|
|
VLC_EXPORT( FILE *, vlc_fopen, ( const char *filename, const char *mode ) );
|
2005-08-04 03:01:44 +08:00
|
|
|
VLC_EXPORT( char *, EnsureUTF8, ( char * ) );
|
2005-10-02 19:11:12 +08:00
|
|
|
VLC_EXPORT( char *, FromUTF32, ( const wchar_t * ) );
|
2005-08-06 03:25:38 +08:00
|
|
|
VLC_EXPORT( char *, __vlc_fix_readdir_charset, ( vlc_object_t *, const char * ) );
|
|
|
|
#define vlc_fix_readdir_charset(a,b) __vlc_fix_readdir_charset(VLC_OBJECT(a),b)
|
2004-02-22 07:15:52 +08:00
|
|
|
|
|
|
|
# ifdef __cplusplus
|
|
|
|
}
|
|
|
|
# endif
|
2005-10-10 15:56:33 +08:00
|
|
|
|
|
|
|
#endif
|