]> git.sesse.net Git - vlc/commitdiff
Improve VLC_COMMON_MEMBERS layout
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Thu, 18 Sep 2008 19:46:57 +0000 (22:46 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Thu, 18 Sep 2008 19:46:57 +0000 (22:46 +0300)
include/vlc_common.h

index 56ccbbe15205fafa110ec80bcbad18ffef8a201f..4ba2ab37bcbc805d9e660585d20f32aa0dfa12b3 100644 (file)
@@ -537,6 +537,9 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *,      /* variable's object */
     volatile bool b_die;                   /**< set by the outside */ \
     bool b_force;      /**< set by the outside (eg. module_Need()) */ \
                                                                             \
+    /** Just a reminder so that people don't cast garbage */                \
+    bool be_sure_to_add_VLC_COMMON_MEMBERS_to_struct;                       \
+                                                                            \
     /* Stuff related to the libvlc structure */                             \
     libvlc_int_t *p_libvlc;                  /**< (root of all evil) - 1 */ \
                                                                             \
@@ -545,8 +548,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *,      /* variable's object */
     /* Private data */                                                      \
     void *          p_private;                                              \
                                                                             \
-    /** Just a reminder so that people don't cast garbage */                \
-    int be_sure_to_add_VLC_COMMON_MEMBERS_to_struct;                        \
 /**@}*/                                                                     \
 
 /* VLC_OBJECT: attempt at doing a clever cast */