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

Make module_LoadMain static

parent 567cf942
...@@ -158,6 +158,8 @@ static char * GetWindowsError ( void ); ...@@ -158,6 +158,8 @@ static char * GetWindowsError ( void );
#endif #endif
#endif #endif
static void module_LoadMain( vlc_object_t *p_this );
/* Sub-version number /* Sub-version number
* (only used to avoid breakage in dev version when cache structure changes) */ * (only used to avoid breakage in dev version when cache structure changes) */
...@@ -307,7 +309,7 @@ void __module_EndBank( vlc_object_t *p_this ) ...@@ -307,7 +309,7 @@ void __module_EndBank( vlc_object_t *p_this )
* as another module, and for instance the configuration options of main will * 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. * 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; vlc_value_t lockval;
......
...@@ -71,8 +71,6 @@ struct module_cache_t ...@@ -71,8 +71,6 @@ struct module_cache_t
#define module_InitBank(a) __module_InitBank(VLC_OBJECT(a)) #define module_InitBank(a) __module_InitBank(VLC_OBJECT(a))
void __module_InitBank ( vlc_object_t * ); 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)) #define module_LoadBuiltins(a) __module_LoadBuiltins(VLC_OBJECT(a))
void __module_LoadBuiltins ( vlc_object_t * ); void __module_LoadBuiltins ( vlc_object_t * );
#define module_LoadPlugins(a) __module_LoadPlugins(VLC_OBJECT(a)) #define module_LoadPlugins(a) __module_LoadPlugins(VLC_OBJECT(a))
......
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