Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8952d64a
Commit
8952d64a
authored
Jul 29, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove vlc_symbols legacy.
parent
86b95f9d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
25 deletions
+1
-25
src/extras/libc.c
src/extras/libc.c
+1
-1
src/modules/entry.c
src/modules/entry.c
+0
-3
src/modules/modules.c
src/modules/modules.c
+0
-13
src/modules/modules.h
src/modules/modules.h
+0
-8
No files found.
src/extras/libc.c
View file @
8952d64a
...
...
@@ -602,7 +602,7 @@ int vlc_scandir( const char *name, struct dirent ***namelist,
}
#endif
#if
defined (WIN32) || !defined (HAVE_SHARED_LIBVLC)
#if
def WIN32
/*****************************************************************************
* dgettext: gettext for plugins.
*****************************************************************************/
...
...
src/modules/entry.c
View file @
8952d64a
...
...
@@ -35,9 +35,6 @@ module_t *vlc_module_create (vlc_object_t *obj)
if
(
module
==
NULL
)
return
NULL
;
#ifndef HAVE_SHARED_LIBVLC
module
->
p_symbols
=
&
vlc_global
(
obj
)
->
p_module_bank
->
symbols
;
#endif
module
->
b_reentrant
=
module
->
b_unloadable
=
VLC_TRUE
;
module
->
psz_object_name
=
module
->
psz_longname
=
default_name
;
module
->
pp_shortcuts
[
0
]
=
default_name
;
...
...
src/modules/modules.c
View file @
8952d64a
...
...
@@ -196,13 +196,6 @@ void __module_InitBank( vlc_object_t *p_this )
p_bank
->
b_cache
=
p_bank
->
b_cache_dirty
=
p_bank
->
b_cache_delete
=
VLC_FALSE
;
/*
* Store the symbols to be exported
*/
#if defined (HAVE_DYNAMIC_PLUGINS) && !defined (HAVE_SHARED_LIBVLC)
STORE_SYMBOLS
(
&
p_bank
->
symbols
);
#endif
/* Everything worked, attach the object */
p_libvlc_global
->
p_module_bank
=
p_bank
;
vlc_object_attach
(
p_bank
,
p_libvlc_global
);
...
...
@@ -2207,9 +2200,6 @@ static void CacheMerge( vlc_object_t *p_this, module_t *p_cache,
p_cache
->
pf_activate
=
p_module
->
pf_activate
;
p_cache
->
pf_deactivate
=
p_module
->
pf_deactivate
;
#ifndef HAVE_SHARED_LIBVLC
p_cache
->
p_symbols
=
p_module
->
p_symbols
;
#endif
p_cache
->
handle
=
p_module
->
handle
;
for
(
i_submodule
=
0
;
i_submodule
<
p_module
->
i_children
;
i_submodule
++
)
...
...
@@ -2218,9 +2208,6 @@ static void CacheMerge( vlc_object_t *p_this, module_t *p_cache,
module_t
*
p_cchild
=
(
module_t
*
)
p_cache
->
pp_children
[
i_submodule
];
p_cchild
->
pf_activate
=
p_child
->
pf_activate
;
p_cchild
->
pf_deactivate
=
p_child
->
pf_deactivate
;
#ifndef HAVE_SHARED_LIBVLC
p_cchild
->
p_symbols
=
p_child
->
p_symbols
;
#endif
}
p_cache
->
b_loaded
=
VLC_TRUE
;
...
...
src/modules/modules.h
View file @
8952d64a
...
...
@@ -34,9 +34,6 @@ struct module_bank_t
VLC_COMMON_MEMBERS
int
i_usage
;
#ifndef HAVE_SHARED_LIBVLC
module_symbols_t
symbols
;
#endif
vlc_bool_t
b_main
;
vlc_bool_t
b_builtins
;
...
...
@@ -141,11 +138,6 @@ struct module_t
vlc_bool_t
b_builtin
;
/* Set to true if the module is built in */
vlc_bool_t
b_loaded
;
/* Set to true if the dll is loaded */
#ifndef HAVE_SHARED_LIBVLC
/* Legacy symbols table */
module_symbols_t
*
p_symbols
;
#endif
};
#endif
...
...
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