vlc_object_t.p_internals is not needed anymore

This commit is contained in:
Rémi Denis-Courmont 2008-05-03 12:51:03 +03:00
parent 0799868272
commit 7f68203001
3 changed files with 2 additions and 5 deletions

View File

@ -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; \

View File

@ -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.

View File

@ -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;