From b0feb464716d09cfa698b58fb0ae0d43412a6058 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Fri, 24 Jul 2009 15:29:40 +0200 Subject: [PATCH] Remove var_SetVoid: this function is doing exactly the same job than var_TriggerCallback but slowly. --- include/vlc_variables.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/include/vlc_variables.h b/include/vlc_variables.h index 3def213e18..0efe910d03 100644 --- a/include/vlc_variables.h +++ b/include/vlc_variables.h @@ -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 ); } -/** - * 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 * @@ -309,10 +296,6 @@ int __var_SetAddress( vlc_object_t *p_obj, const char *psz_name, void *ptr ) * __var_SetString() with automatic casting */ #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 */ -- 2.39.5