]> git.sesse.net Git - vlc/commitdiff
modules: Put bool at the end of the structure to eventually ease packing.
authorPierre d'Herbemont <pdherbemont@free.fr>
Fri, 5 Mar 2010 13:24:37 +0000 (14:24 +0100)
committerPierre d'Herbemont <pdherbemont@free.fr>
Fri, 5 Mar 2010 13:24:37 +0000 (14:24 +0100)
src/modules/modules.h

index 2973c43aa4da35cae6a8ffbba77f4e15ca980acb..158485045e8aaabe94172420e992518b779c32f5 100644 (file)
@@ -112,9 +112,6 @@ struct module_t
     char    *psz_capability;                                 /**< Capability */
     int      i_score;                          /**< Score for the capability */
 
-    bool b_unloadable;                        /**< Can we be dlclosed? */
-    bool b_submodule;                        /**< Is this a submodule? */
-
     /* Callbacks */
     int  ( * pf_activate )   ( vlc_object_t * );
     void ( * pf_deactivate ) ( vlc_object_t * );
@@ -137,6 +134,12 @@ struct module_t
 
     bool          b_builtin;  /* Set to true if the module is built in */
     bool          b_loaded;        /* Set to true if the dll is loaded */
+
+    /*
+     * Other variables set by the module to identify itself
+     */
+    bool b_unloadable;                        /**< Can we be dlclosed? */
+    bool b_submodule;                        /**< Is this a submodule? */
 };
 
 module_t *vlc_module_create (vlc_object_t *);