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

Update the symbols list

parent 47756a76
...@@ -8,12 +8,14 @@ cat ${srcdir}/../include/vlc_*.h | \ ...@@ -8,12 +8,14 @@ cat ${srcdir}/../include/vlc_*.h | \
sed -n -e 's/^VLC_EXPORT\s*([^,]*,\s*\([a-zA-Z0-9_]*\)\s*,.*$/\1/p' | \ sed -n -e 's/^VLC_EXPORT\s*([^,]*,\s*\([a-zA-Z0-9_]*\)\s*,.*$/\1/p' | \
sort -du > libvlc-headers.sym sort -du > libvlc-headers.sym
if grep -e "^_" libvlc-headers.sym; then
echo "Illegal symbol name (starting with underscore) found!";
exit 1
fi
if ! diff -u ${srcdir}/libvlc.sym libvlc-headers.sym; then if ! diff -u ${srcdir}/libvlc.sym libvlc-headers.sym; then
echo "Mismatching symbols found!" echo "Mismatching symbols found!"
exit 1 exit 1
fi fi
# TODO: we should pass this:
#if grep -e "^_" libvlc-headers.sym; then
# echo "Illegal symbol name (starting with underscore) found!";
# exit 1
#fi
...@@ -351,6 +351,7 @@ utf8_opendir ...@@ -351,6 +351,7 @@ utf8_opendir
utf8_readdir utf8_readdir
utf8_scandir utf8_scandir
utf8_stat utf8_stat
utf8_unlink
utf8_vfprintf utf8_vfprintf
var_AcquireMutex var_AcquireMutex
__var_AddCallback __var_AddCallback
...@@ -364,6 +365,10 @@ __var_OptionParse ...@@ -364,6 +365,10 @@ __var_OptionParse
__var_Set __var_Set
__var_TriggerCallback __var_TriggerCallback
__var_Type __var_Type
vlc_alphasort
vlc_asprintf
vlc_atof
vlc_atoll
vlc_b64_decode vlc_b64_decode
vlc_b64_decode_binary vlc_b64_decode_binary
vlc_b64_decode_binary_to_buffer vlc_b64_decode_binary_to_buffer
...@@ -391,12 +396,14 @@ __vlc_execve ...@@ -391,12 +396,14 @@ __vlc_execve
vlc_freeaddrinfo vlc_freeaddrinfo
vlc_gai_strerror vlc_gai_strerror
vlc_getaddrinfo vlc_getaddrinfo
vlc_getenv
vlc_getnameinfo vlc_getnameinfo
vlc_iconv vlc_iconv
vlc_iconv_close vlc_iconv_close
vlc_iconv_open vlc_iconv_open
__vlc_list_find __vlc_list_find
vlc_list_release vlc_list_release
vlc_lldiv
vlc_module_create vlc_module_create
vlc_module_set vlc_module_set
__vlc_mutex_destroy __vlc_mutex_destroy
...@@ -421,15 +428,24 @@ __vlc_object_waitpipe ...@@ -421,15 +428,24 @@ __vlc_object_waitpipe
__vlc_object_yield __vlc_object_yield
vlc_parse_cmdline vlc_parse_cmdline
vlc_rand_bytes vlc_rand_bytes
vlc_scandir
vlc_sdp_Start vlc_sdp_Start
vlc_strcasecmp
vlc_strcasestr
vlc_strdup
vlc_strlcpy
vlc_strncasecmp
vlc_strndup
vlc_strtoll
vlc_submodule_create vlc_submodule_create
__vlc_thread_create __vlc_thread_create
__vlc_thread_join __vlc_thread_join
__vlc_thread_ready __vlc_thread_ready
__vlc_threads_error vlc_threads_error
__vlc_thread_set_priority __vlc_thread_set_priority
__vlc_threadvar_create __vlc_threadvar_create
vlc_ureduce vlc_ureduce
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