Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
d158d892
Commit
d158d892
authored
Dec 03, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make module_LoadMain static
parent
567cf942
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/misc/modules.c
src/misc/modules.c
+3
-1
src/misc/modules.h
src/misc/modules.h
+0
-2
No files found.
src/misc/modules.c
View file @
d158d892
...
...
@@ -158,6 +158,8 @@ static char * GetWindowsError ( void );
#endif
#endif
static
void
module_LoadMain
(
vlc_object_t
*
p_this
);
/* Sub-version number
* (only used to avoid breakage in dev version when cache structure changes) */
...
...
@@ -307,7 +309,7 @@ void __module_EndBank( vlc_object_t *p_this )
* as another module, and for instance the configuration options of main will
* be available in the module bank structure just as for every other module.
*****************************************************************************/
void
__
module_LoadMain
(
vlc_object_t
*
p_this
)
static
void
module_LoadMain
(
vlc_object_t
*
p_this
)
{
vlc_value_t
lockval
;
...
...
src/misc/modules.h
View file @
d158d892
...
...
@@ -71,8 +71,6 @@ struct module_cache_t
#define module_InitBank(a) __module_InitBank(VLC_OBJECT(a))
void
__module_InitBank
(
vlc_object_t
*
);
#define module_LoadMain(a) __module_LoadMain(VLC_OBJECT(a))
void
__module_LoadMain
(
vlc_object_t
*
);
#define module_LoadBuiltins(a) __module_LoadBuiltins(VLC_OBJECT(a))
void
__module_LoadBuiltins
(
vlc_object_t
*
);
#define module_LoadPlugins(a) __module_LoadPlugins(VLC_OBJECT(a))
...
...
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