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

More symbols fixes

parent 37af31a8
...@@ -1027,12 +1027,12 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw ) ...@@ -1027,12 +1027,12 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
#if defined (WIN32) #if defined (WIN32)
# include <dirent.h> # include <dirent.h>
VLC_INTERNAL( void *, vlc_wopendir, ( const wchar_t * ) ); VLC_INTERNAL( void *, vlc_wopendir, ( const wchar_t * ) );
VLC_INTERNAL( struct _wdirent *, vlc_wreaddir, ( void * ) ); VLC_INTERNAL( struct _wdirent *, vlc_wreaddir, ( void * ) );
VLC_EXPORT( int, vlc_wclosedir, ( void * ) ); VLC_EXPORT( int, vlc_wclosedir, ( void * ) );
VLC_INTERNAL( void, vlc_rewinddir, ( void * ) ); VLC_INTERNAL( void, vlc_rewinddir, ( void * ) );
VLC_INTERNAL( void, vlc_seekdir, ( void *, long ) ); VLC_INTERNAL( void, vlc_seekdir, ( void *, long ) );
VLC_INTERNAL( long, vlc_telldir, ( void * ) ); VLC_INTERNAL( long, vlc_telldir, ( void * ) );
# define opendir Use_utf8_opendir_or_vlc_wopendir_instead! # define opendir Use_utf8_opendir_or_vlc_wopendir_instead!
# define readdir Use_utf8_readdir_or_vlc_wreaddir_instead! # define readdir Use_utf8_readdir_or_vlc_wreaddir_instead!
# define closedir vlc_wclosedir # define closedir vlc_wclosedir
...@@ -1183,7 +1183,7 @@ VLC_EXPORT( unsigned, vlc_CPU, ( void ) ); ...@@ -1183,7 +1183,7 @@ VLC_EXPORT( unsigned, vlc_CPU, ( void ) );
* I18n stuff * I18n stuff
*****************************************************************************/ *****************************************************************************/
#ifdef WIN32 #ifdef WIN32
VLC_EXPORT( char *, vlc_dgettext, ( const char *package, const char *msgid ) ); VLC_EXPORT( char *, vlc_dgettext, ( const char *package, const char *msgid ) );
#endif #endif
#if defined( ENABLE_NLS ) && \ #if defined( ENABLE_NLS ) && \
......
...@@ -51,9 +51,9 @@ typedef struct ...@@ -51,9 +51,9 @@ typedef struct
char * psz_message; char * psz_message;
} msg_context_t; } msg_context_t;
VLC_EXPORT( void, msg_StackSet, ( int, const char*, ... ) ); void msg_StackSet ( int, const char*, ... );
VLC_EXPORT( void, msg_StackAdd, ( const char*, ... ) ); void msg_StackAdd ( const char*, ... );
VLC_EXPORT( const char*, msg_StackMsg, ( void ) ); const char* msg_StackMsg ( void );
/** /**
* Store a single message sent to user. * Store a single message sent to user.
......
...@@ -140,14 +140,14 @@ VLC_EXPORT( ssize_t, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_soc ...@@ -140,14 +140,14 @@ VLC_EXPORT( ssize_t, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_soc
#ifndef HAVE_INET_PTON #ifndef HAVE_INET_PTON
/* only in core, so no need for C++ extern "C" */ /* only in core, so no need for C++ extern "C" */
VLC_EXPORT (int, inet_pton, (int af, const char *src, void *dst) ); VLC_EXPORT (int, inet_pton, (int af, const char *src, void *dst) );
#endif #endif
#ifndef HAVE_INET_NTOP #ifndef HAVE_INET_NTOP
#ifdef WIN32 #ifdef WIN32
/* only in core, so no need for C++ extern "C" */ /* only in core, so no need for C++ extern "C" */
VLC_EXPORT (const char *, inet_ntop, (int af, const void *src, VLC_EXPORT (const char *, inet_ntop, (int af, const void *src,
char *dst, socklen_t cnt) ); char *dst, socklen_t cnt) );
#endif #endif
#endif #endif
......
...@@ -66,7 +66,6 @@ date_Increment ...@@ -66,7 +66,6 @@ date_Increment
date_Init date_Init
date_Move date_Move
date_Set date_Set
DecodeLanguage
decoder_GetInputAttachments decoder_GetInputAttachments
decode_URI decode_URI
decode_URI_duplicate decode_URI_duplicate
...@@ -143,10 +142,6 @@ __intf_UserStringInput ...@@ -143,10 +142,6 @@ __intf_UserStringInput
__intf_UserWarn __intf_UserWarn
__intf_UserYesNo __intf_UserYesNo
IsUTF8 IsUTF8
libvlc_InternalCleanup
libvlc_InternalCreate
libvlc_InternalDestroy
libvlc_InternalInit
LocaleFree LocaleFree
mdate mdate
__module_Exists __module_Exists
...@@ -184,8 +179,6 @@ net_SetCSCov ...@@ -184,8 +179,6 @@ net_SetCSCov
__net_vaPrintf __net_vaPrintf
__net_Write __net_Write
NTPtime64 NTPtime64
osd_ConfigLoader
osd_ConfigUnload
osd_Icon osd_Icon
__osd_MenuActivate __osd_MenuActivate
__osd_MenuCreate __osd_MenuCreate
...@@ -200,7 +193,6 @@ osd_Message ...@@ -200,7 +193,6 @@ osd_Message
osd_ShowTextAbsolute osd_ShowTextAbsolute
osd_ShowTextRelative osd_ShowTextRelative
osd_Slider osd_Slider
__osd_StateChange
__osd_Volume __osd_Volume
path_sanitize path_sanitize
playlist_Add playlist_Add
...@@ -245,6 +237,17 @@ resolve_xml_special_chars ...@@ -245,6 +237,17 @@ resolve_xml_special_chars
sdp_AddAttribute sdp_AddAttribute
sdp_AddMedia sdp_AddMedia
secstotimestr secstotimestr
services_discovery_AddItem
services_discovery_Create
services_discovery_Destroy
services_discovery_EventManager
services_discovery_GetLocalizedName
__services_discovery_GetServicesNames
services_discovery_RemoveItem
services_discovery_SetLocalizedName
services_discovery_Start
services_discovery_Stop
sout_AccessOutControl
sout_AccessOutDelete sout_AccessOutDelete
sout_AccessOutNew sout_AccessOutNew
sout_AccessOutRead sout_AccessOutRead
...@@ -298,6 +301,7 @@ stream_Peek ...@@ -298,6 +301,7 @@ stream_Peek
stream_Read stream_Read
stream_ReadLine stream_ReadLine
__stream_UrlNew __stream_UrlNew
stream_vaControl
__str_format __str_format
__str_format_meta __str_format_meta
str_format_time str_format_time
...@@ -308,11 +312,6 @@ unescape_URI ...@@ -308,11 +312,6 @@ unescape_URI
unescape_URI_duplicate unescape_URI_duplicate
update_Check update_Check
update_Delete update_Delete
update_download
update_iterator_Action
update_iterator_ChooseMirrorAndFile
update_iterator_Delete
update_iterator_New
__update_New __update_New
us_atof us_atof
us_strtod us_strtod
...@@ -339,12 +338,12 @@ __var_OptionParse ...@@ -339,12 +338,12 @@ __var_OptionParse
__var_Set __var_Set
__var_TriggerCallback __var_TriggerCallback
__var_Type __var_Type
VLC_AddIntf vlc_b64_decode
vlc_asprintf vlc_b64_decode_binary
vlc_b64_decode_binary_to_buffer
vlc_b64_encode vlc_b64_encode
vlc_b64_encode_binary vlc_b64_encode_binary
VLC_Changeset VLC_Changeset
VLC_CleanUp
VLC_CompileBy VLC_CompileBy
VLC_CompileDomain VLC_CompileDomain
VLC_CompileHost VLC_CompileHost
...@@ -352,9 +351,6 @@ VLC_Compiler ...@@ -352,9 +351,6 @@ VLC_Compiler
__vlc_cond_destroy __vlc_cond_destroy
__vlc_cond_init __vlc_cond_init
vlc_CPU vlc_CPU
VLC_Create
VLC_Destroy
VLC_Die
vlc_error vlc_error
VLC_Error VLC_Error
__vlc_execve __vlc_execve
...@@ -365,9 +361,9 @@ vlc_getnameinfo ...@@ -365,9 +361,9 @@ vlc_getnameinfo
vlc_iconv vlc_iconv
vlc_iconv_close vlc_iconv_close
vlc_iconv_open vlc_iconv_open
VLC_Init
__vlc_list_find __vlc_list_find
vlc_list_release vlc_list_release
vlc_module_create
vlc_module_set vlc_module_set
__vlc_mutex_destroy __vlc_mutex_destroy
__vlc_mutex_init __vlc_mutex_init
...@@ -380,7 +376,12 @@ __vlc_object_find ...@@ -380,7 +376,12 @@ __vlc_object_find
__vlc_object_find_name __vlc_object_find_name
__vlc_object_get __vlc_object_get
__vlc_object_kill __vlc_object_kill
__vlc_object_lock
__vlc_object_release __vlc_object_release
__vlc_object_signal_unlocked
__vlc_object_timedwait
__vlc_object_unlock
__vlc_object_wait
__vlc_object_yield __vlc_object_yield
vlc_parse_cmdline vlc_parse_cmdline
vlc_rand_bytes vlc_rand_bytes
...@@ -391,9 +392,6 @@ __vlc_thread_join ...@@ -391,9 +392,6 @@ __vlc_thread_join
__vlc_thread_ready __vlc_thread_ready
__vlc_thread_set_priority __vlc_thread_set_priority
vlc_ureduce vlc_ureduce
VLC_VariableGet
VLC_VariableSet
vlc_vasprintf
VLC_Version VLC_Version
vlc_wraptext vlc_wraptext
vlm_Control vlm_Control
......
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