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

Remove vlc_object_t.p_private

parent 7d1e5fe7
...@@ -515,9 +515,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */ ...@@ -515,9 +515,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
\ \
vlc_object_t * p_parent; /**< our parent */ \ vlc_object_t * p_parent; /**< our parent */ \
\ \
/* Private data */ \
void * p_private; \
\
/**@}*/ \ /**@}*/ \
/* VLC_OBJECT: attempt at doing a clever cast */ /* VLC_OBJECT: attempt at doing a clever cast */
......
...@@ -119,8 +119,8 @@ enum vlc_module_properties ...@@ -119,8 +119,8 @@ enum vlc_module_properties
/** /**
* Current plugin ABI version * Current plugin ABI version
*/ */
# define MODULE_SYMBOL 1_1_0a # define MODULE_SYMBOL 1_1_0b
# define MODULE_SUFFIX "__1_1_0a" # define MODULE_SUFFIX "__1_1_0b"
/***************************************************************************** /*****************************************************************************
* Add a few defines. You do not want to read this section. Really. * Add a few defines. You do not want to read this section. Really.
......
...@@ -160,8 +160,6 @@ void *__vlc_custom_create( vlc_object_t *p_this, size_t i_size, ...@@ -160,8 +160,6 @@ void *__vlc_custom_create( vlc_object_t *p_this, size_t i_size,
p_priv->pp_children = NULL; p_priv->pp_children = NULL;
p_priv->i_children = 0; p_priv->i_children = 0;
p_new->p_private = NULL;
/* Initialize mutexes and condvars */ /* Initialize mutexes and condvars */
vlc_mutex_init( &p_priv->var_lock ); vlc_mutex_init( &p_priv->var_lock );
vlc_cond_init( &p_priv->var_wait ); vlc_cond_init( &p_priv->var_wait );
......
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