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

vlc_object_t.p_internals is not needed anymore

parent 07998682
......@@ -462,7 +462,6 @@ typedef struct vlc_object_internals_t vlc_object_internals_t;
* these members are common for all vlc objects \
*/ \
/**@{*/ \
vlc_object_internals_t *p_internals; \
int i_object_id; \
int i_object_type; \
const char *psz_object_type; \
......
......@@ -35,8 +35,8 @@
/**
* Current plugin ABI version
*/
# define MODULE_SYMBOL 0_9_0j
# define MODULE_SUFFIX "__0_9_0j"
# define MODULE_SYMBOL 0_9_0k
# define MODULE_SUFFIX "__0_9_0k"
/*****************************************************************************
* Add a few defines. You do not want to read this section. Really.
......
......@@ -118,10 +118,8 @@ void *vlc_custom_create( vlc_object_t *p_this, size_t i_size,
assert (i_size >= sizeof (vlc_object_t));
p_new = (vlc_object_t *)(p_priv + 1);
p_new->p_internals = p_priv;
p_new->i_object_type = i_type;
p_new->psz_object_type = psz_type;
p_new->psz_object_name = NULL;
p_new->b_die = false;
......
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