Commit 24668b52 authored by Gildas Bazin's avatar Gildas Bazin

* include/vlc_common.h: forgot this file in my last commit.

parent 8d820880
...@@ -912,6 +912,12 @@ typedef __int64 off_t; ...@@ -912,6 +912,12 @@ typedef __int64 off_t;
#define wraptext vlc_wraptext #define wraptext vlc_wraptext
VLC_EXPORT( char *, vlc_wraptext, ( const char *, int, vlc_bool_t ) ); VLC_EXPORT( char *, vlc_wraptext, ( const char *, int, vlc_bool_t ) );
/* iconv wrappers (defined in src/extras/libc.c) */
typedef void *vlc_iconv_t;
VLC_EXPORT( vlc_iconv_t, vlc_iconv_open, ( const char *, const char * ) );
VLC_EXPORT( size_t, vlc_iconv, ( vlc_iconv_t, char **, size_t *, char **, size_t * ) );
VLC_EXPORT( int, vlc_iconv_close, ( vlc_iconv_t ) );
/***************************************************************************** /*****************************************************************************
* CPU capabilities * CPU capabilities
*****************************************************************************/ *****************************************************************************/
......
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