Commit aa5d11c7 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Unexport utf8_mkdir and vlc_current_object

parent d0a6a862
...@@ -52,7 +52,6 @@ VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*se ...@@ -52,7 +52,6 @@ VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*se
VLC_EXPORT( int, utf8_stat, ( const char *filename, struct stat *buf ) ); 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_lstat, ( const char *filename, struct stat *buf ) );
VLC_EXPORT( int, utf8_mkdir, ( const char *filename ) );
VLC_EXPORT( int, utf8_vfprintf, ( FILE *stream, const char *fmt, va_list ap ) ); VLC_EXPORT( int, utf8_vfprintf, ( FILE *stream, const char *fmt, va_list ap ) );
VLC_EXPORT( int, utf8_fprintf, ( FILE *, const char *, ... ) ); VLC_EXPORT( int, utf8_fprintf, ( FILE *, const char *, ... ) );
......
...@@ -108,7 +108,6 @@ VLC_EXPORT( void, __vlc_object_yield, ( vlc_object_t * ) ); ...@@ -108,7 +108,6 @@ VLC_EXPORT( void, __vlc_object_yield, ( vlc_object_t * ) );
VLC_EXPORT( void, __vlc_object_release, ( vlc_object_t * ) ); VLC_EXPORT( void, __vlc_object_release, ( vlc_object_t * ) );
VLC_EXPORT( vlc_list_t *, __vlc_list_find, ( vlc_object_t *, int, int ) ); VLC_EXPORT( vlc_list_t *, __vlc_list_find, ( vlc_object_t *, int, int ) );
VLC_EXPORT( void, vlc_list_release, ( vlc_list_t * ) ); VLC_EXPORT( void, vlc_list_release, ( vlc_list_t * ) );
VLC_EXPORT( libvlc_int_t *, vlc_current_object, ( int ) );
/*}@*/ /*}@*/
......
...@@ -46,6 +46,11 @@ int __vlc_threads_end( vlc_object_t * ); ...@@ -46,6 +46,11 @@ int __vlc_threads_end( vlc_object_t * );
extern uint32_t cpu_flags; extern uint32_t cpu_flags;
uint32_t CPUCapabilities( void ); uint32_t CPUCapabilities( void );
/*
* Unicode stuff
*/
int utf8_mkdir( const char *filename );
/* /*
* LibVLC objects stuff * LibVLC objects stuff
...@@ -92,7 +97,9 @@ struct libvlc_global_data_t ...@@ -92,7 +97,9 @@ struct libvlc_global_data_t
#endif #endif
}; };
libvlc_global_data_t *vlc_global (void); libvlc_global_data_t *vlc_global (void);
libvlc_int_t *vlc_current_object (int i_object);
/* Private LibVLC data for each objects */ /* Private LibVLC data for each objects */
struct vlc_object_internals_t struct vlc_object_internals_t
......
...@@ -327,7 +327,6 @@ us_strtod ...@@ -327,7 +327,6 @@ us_strtod
utf8_fopen utf8_fopen
utf8_fprintf utf8_fprintf
utf8_lstat utf8_lstat
utf8_mkdir
utf8_open utf8_open
utf8_opendir utf8_opendir
utf8_readdir utf8_readdir
...@@ -361,7 +360,6 @@ VLC_VariableGet ...@@ -361,7 +360,6 @@ VLC_VariableGet
VLC_VariableSet VLC_VariableSet
__vlc_cond_destroy __vlc_cond_destroy
__vlc_cond_init __vlc_cond_init
vlc_current_object
vlc_error vlc_error
VLC_Error VLC_Error
__vlc_execve __vlc_execve
......
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