Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
5b7e0b5a
Commit
5b7e0b5a
authored
Dec 12, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More symbols fixes
parent
37af31a8
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
36 deletions
+34
-36
include/vlc_common.h
include/vlc_common.h
+7
-7
include/vlc_messages.h
include/vlc_messages.h
+3
-3
include/vlc_network.h
include/vlc_network.h
+3
-3
src/libvlc.sym
src/libvlc.sym
+21
-23
No files found.
include/vlc_common.h
View file @
5b7e0b5a
...
...
@@ -1027,12 +1027,12 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
#if defined (WIN32)
# include <dirent.h>
VLC_INTERNAL
(
void
*
,
vlc_wopendir
,
(
const
wchar_t
*
)
);
VLC_INTERNAL
(
struct
_wdirent
*
,
vlc_wreaddir
,
(
void
*
)
);
VLC_EXPORT
(
int
,
vlc_wclosedir
,
(
void
*
)
);
VLC_INTERNAL
(
void
,
vlc_rewinddir
,
(
void
*
)
);
VLC_INTERNAL
(
void
,
vlc_seekdir
,
(
void
*
,
long
)
);
VLC_INTERNAL
(
long
,
vlc_telldir
,
(
void
*
)
);
VLC_INTERNAL
(
void
*
,
vlc_wopendir
,
(
const
wchar_t
*
)
);
VLC_INTERNAL
(
struct
_wdirent
*
,
vlc_wreaddir
,
(
void
*
)
);
VLC_EXPORT
(
int
,
vlc_wclosedir
,
(
void
*
)
);
VLC_INTERNAL
(
void
,
vlc_rewinddir
,
(
void
*
)
);
VLC_INTERNAL
(
void
,
vlc_seekdir
,
(
void
*
,
long
)
);
VLC_INTERNAL
(
long
,
vlc_telldir
,
(
void
*
)
);
# define opendir Use_utf8_opendir_or_vlc_wopendir_instead!
# define readdir Use_utf8_readdir_or_vlc_wreaddir_instead!
# define closedir vlc_wclosedir
...
...
@@ -1183,7 +1183,7 @@ VLC_EXPORT( unsigned, vlc_CPU, ( void ) );
* I18n stuff
*****************************************************************************/
#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
#if defined( ENABLE_NLS ) && \
...
...
include/vlc_messages.h
View file @
5b7e0b5a
...
...
@@ -51,9 +51,9 @@ typedef struct
char
*
psz_message
;
}
msg_context_t
;
VLC_EXPORT
(
void
,
msg_StackSet
,
(
int
,
const
char
*
,
...
)
);
VLC_EXPORT
(
void
,
msg_StackAdd
,
(
const
char
*
,
...
)
);
VLC_EXPORT
(
const
char
*
,
msg_StackMsg
,
(
void
)
);
void
msg_StackSet
(
int
,
const
char
*
,
...
);
void
msg_StackAdd
(
const
char
*
,
...
);
const
char
*
msg_StackMsg
(
void
);
/**
* Store a single message sent to user.
...
...
include/vlc_network.h
View file @
5b7e0b5a
...
...
@@ -140,13 +140,13 @@ VLC_EXPORT( ssize_t, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_soc
#ifndef HAVE_INET_PTON
/* 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
#ifndef HAVE_INET_NTOP
#ifdef WIN32
/* 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
)
);
#endif
#endif
...
...
src/libvlc.sym
View file @
5b7e0b5a
...
...
@@ -66,7 +66,6 @@ date_Increment
date_Init
date_Move
date_Set
DecodeLanguage
decoder_GetInputAttachments
decode_URI
decode_URI_duplicate
...
...
@@ -143,10 +142,6 @@ __intf_UserStringInput
__intf_UserWarn
__intf_UserYesNo
IsUTF8
libvlc_InternalCleanup
libvlc_InternalCreate
libvlc_InternalDestroy
libvlc_InternalInit
LocaleFree
mdate
__module_Exists
...
...
@@ -184,8 +179,6 @@ net_SetCSCov
__net_vaPrintf
__net_Write
NTPtime64
osd_ConfigLoader
osd_ConfigUnload
osd_Icon
__osd_MenuActivate
__osd_MenuCreate
...
...
@@ -200,7 +193,6 @@ osd_Message
osd_ShowTextAbsolute
osd_ShowTextRelative
osd_Slider
__osd_StateChange
__osd_Volume
path_sanitize
playlist_Add
...
...
@@ -245,6 +237,17 @@ resolve_xml_special_chars
sdp_AddAttribute
sdp_AddMedia
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_AccessOutNew
sout_AccessOutRead
...
...
@@ -298,6 +301,7 @@ stream_Peek
stream_Read
stream_ReadLine
__stream_UrlNew
stream_vaControl
__str_format
__str_format_meta
str_format_time
...
...
@@ -308,11 +312,6 @@ unescape_URI
unescape_URI_duplicate
update_Check
update_Delete
update_download
update_iterator_Action
update_iterator_ChooseMirrorAndFile
update_iterator_Delete
update_iterator_New
__update_New
us_atof
us_strtod
...
...
@@ -339,12 +338,12 @@ __var_OptionParse
__var_Set
__var_TriggerCallback
__var_Type
VLC_AddIntf
vlc_asprintf
vlc_b64_decode
vlc_b64_decode_binary
vlc_b64_decode_binary_to_buffer
vlc_b64_encode
vlc_b64_encode_binary
VLC_Changeset
VLC_CleanUp
VLC_CompileBy
VLC_CompileDomain
VLC_CompileHost
...
...
@@ -352,9 +351,6 @@ VLC_Compiler
__vlc_cond_destroy
__vlc_cond_init
vlc_CPU
VLC_Create
VLC_Destroy
VLC_Die
vlc_error
VLC_Error
__vlc_execve
...
...
@@ -365,9 +361,9 @@ vlc_getnameinfo
vlc_iconv
vlc_iconv_close
vlc_iconv_open
VLC_Init
__vlc_list_find
vlc_list_release
vlc_module_create
vlc_module_set
__vlc_mutex_destroy
__vlc_mutex_init
...
...
@@ -380,7 +376,12 @@ __vlc_object_find
__vlc_object_find_name
__vlc_object_get
__vlc_object_kill
__vlc_object_lock
__vlc_object_release
__vlc_object_signal_unlocked
__vlc_object_timedwait
__vlc_object_unlock
__vlc_object_wait
__vlc_object_yield
vlc_parse_cmdline
vlc_rand_bytes
...
...
@@ -391,9 +392,6 @@ __vlc_thread_join
__vlc_thread_ready
__vlc_thread_set_priority
vlc_ureduce
VLC_VariableGet
VLC_VariableSet
vlc_vasprintf
VLC_Version
vlc_wraptext
vlm_Control
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment