Commit b0feb464 authored by Rémi Duraffort's avatar Rémi Duraffort

Remove var_SetVoid: this function is doing exactly the same job than

var_TriggerCallback but slowly.
parent 1c8e75e8
...@@ -261,19 +261,6 @@ static inline int __var_SetString( vlc_object_t *p_obj, const char *psz_name, co ...@@ -261,19 +261,6 @@ static inline int __var_SetString( vlc_object_t *p_obj, const char *psz_name, co
return var_SetChecked( p_obj, psz_name, VLC_VAR_STRING, val ); return var_SetChecked( p_obj, psz_name, VLC_VAR_STRING, val );
} }
/**
* Trigger the callbacks on a void variable
*
* \param p_obj The object that holds the variable
* \param psz_name The name of the variable
*/
static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name )
{
vlc_value_t val;
val.b_bool = true;
return var_SetChecked( p_obj, psz_name, VLC_VAR_VOID, val );
}
/** /**
* Set the value of a pointer variable * Set the value of a pointer variable
* *
...@@ -309,10 +296,6 @@ int __var_SetAddress( vlc_object_t *p_obj, const char *psz_name, void *ptr ) ...@@ -309,10 +296,6 @@ int __var_SetAddress( vlc_object_t *p_obj, const char *psz_name, void *ptr )
* __var_SetString() with automatic casting * __var_SetString() with automatic casting
*/ */
#define var_SetString(a,b,c) __var_SetString( VLC_OBJECT(a),b,c) #define var_SetString(a,b,c) __var_SetString( VLC_OBJECT(a),b,c)
/**
* __var_SetVoid() with automatic casting
*/
#define var_SetVoid(a,b) __var_SetVoid( VLC_OBJECT(a),b)
/** /**
* __var_SetAddress() with automatic casting * __var_SetAddress() with automatic casting
*/ */
......
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