]> git.sesse.net Git - vlc/blobdiff - src/modules/modules.h
plugins must match "lib*_plugin"LIBEXT, not just "*"LIBEXT
[vlc] / src / modules / modules.h
index 252abe5b491faf8834a81bb569bf89a0f9d0a1cb..feef97e26da48d10e4ed9dc1e1b3a711047ec53b 100644 (file)
@@ -41,8 +41,6 @@ struct module_bank_t
 {
     unsigned         i_usage;
 
-    bool             b_plugins;
-
     /* Plugins cache */
     bool             b_cache;
     bool             b_cache_dirty;
@@ -68,8 +66,8 @@ struct module_cache_t
     bool b_junk;
 
     /* Optional extra data */
-    module_t *p_module;
     bool b_used;
+    module_t *p_module;
 };
 
 
@@ -102,7 +100,6 @@ struct module_t
     module_t   *parent;
     unsigned    submodule_count;
     gc_object_t vlc_gc_data;
-    vlc_mutex_t lock;
 
     /*
      * Variables set by the module to identify itself
@@ -116,10 +113,8 @@ struct module_t
 
     char    *psz_capability;                                 /**< Capability */
     int      i_score;                          /**< Score for the capability */
-    uint32_t i_cpu;                           /**< Required CPU capabilities */
 
     bool b_unloadable;                        /**< Can we be dlclosed? */
-    bool b_reentrant;                           /**< Are we reentrant? */
     bool b_submodule;                        /**< Is this a submodule? */
 
     /* Callbacks */