X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_variables.h;h=04196fdd86aae28c5447c02cf2cbfc24546d0204;hb=ab1e2b524cb535d8c2ef1a7914f359d679d83136;hp=2755f7e350767275fc68ee30849eaf390ea1af69;hpb=02752dc7806ae5385f868faada5718e89aa76add;p=vlc diff --git a/include/vlc_variables.h b/include/vlc_variables.h index 2755f7e350..04196fdd86 100644 --- a/include/vlc_variables.h +++ b/include/vlc_variables.h @@ -22,10 +22,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif - #ifndef _VLC_VARIABLES_H #define _VLC_VARIABLES_H 1 @@ -110,6 +106,8 @@ #define VLC_VAR_INHERITVALUE 0x0030 #define VLC_VAR_TRIGGER_CALLBACKS 0x0035 + +#define VLC_VAR_SETISCOMMAND 0x0040 /**@}*/ /***************************************************************************** @@ -124,9 +122,6 @@ VLC_EXPORT( int, __var_Type, ( vlc_object_t *, const char * ) ); VLC_EXPORT( int, __var_Set, ( vlc_object_t *, const char *, vlc_value_t ) ); VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) ); -#define var_OptionParse(a,b) __var_OptionParse( VLC_OBJECT( a ) , b ) -VLC_EXPORT( void, __var_OptionParse, ( vlc_object_t *, const char * ) ); - #define var_Command(a,b,c,d,e) __var_Command( VLC_OBJECT( a ), b, c, d, e ) VLC_EXPORT( int, __var_Command, ( vlc_object_t *, const char *, const char *, const char *, char ** ) ); @@ -212,7 +207,7 @@ static inline int __var_SetInteger( vlc_object_t *p_obj, const char *psz_name, i * \param psz_name The name of the variable * \param b The new boolean value of this variable */ -static inline int __var_SetBool( vlc_object_t *p_obj, const char *psz_name, vlc_bool_t b ) +static inline int __var_SetBool( vlc_object_t *p_obj, const char *psz_name, bool b ) { vlc_value_t val; val.b_bool = b; @@ -270,7 +265,7 @@ static inline int __var_SetString( vlc_object_t *p_obj, const char *psz_name, co static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name ) { vlc_value_t val; - val.b_bool = VLC_TRUE; + val.b_bool = true; return __var_Set( p_obj, psz_name, val ); } #define var_SetVoid(a,b) __var_SetVoid( VLC_OBJECT(a),b) @@ -316,11 +311,11 @@ static inline int __var_GetInteger( vlc_object_t *p_obj, const char *psz_name ) */ static inline int __var_GetBool( vlc_object_t *p_obj, const char *psz_name ) { - vlc_value_t val; val.b_bool = VLC_FALSE; + vlc_value_t val; val.b_bool = false; if( !__var_Get( p_obj, psz_name, &val ) ) return val.b_bool; else - return VLC_FALSE; + return false; } /** @@ -362,10 +357,10 @@ static inline float __var_GetFloat( vlc_object_t *p_obj, const char *psz_name ) static inline char *__var_GetString( vlc_object_t *p_obj, const char *psz_name ) { vlc_value_t val; val.psz_string = NULL; - if( !__var_Get( p_obj, psz_name, &val ) ) - return val.psz_string; + if( __var_Get( p_obj, psz_name, &val ) ) + return NULL; else - return strdup( "" ); + return val.psz_string; } static inline char *__var_GetNonEmptyString( vlc_object_t *obj, const char *name )