]> git.sesse.net Git - vlc/blob - include/vlc_variables.h
Remove unused define.
[vlc] / include / vlc_variables.h
1 /*****************************************************************************
2  * variables.h: variables handling
3  *****************************************************************************
4  * Copyright (C) 2002-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef VLC_VARIABLES_H
26 #define VLC_VARIABLES_H 1
27
28 /**
29  * \file
30  * This file defines functions and structures for dynamic variables in vlc
31  */
32
33 /**
34  * \defgroup variables Variables
35  *
36  * Functions for using the object variables in vlc.
37  *
38  * Vlc have a very powerful "object variable" infrastructure useful
39  * for many things.
40  *
41  * @{
42  */
43
44 /*****************************************************************************
45  * Variable types - probably very incomplete
46  *****************************************************************************/
47 #define VLC_VAR_TYPE      0x00ff
48 #define VLC_VAR_CLASS     0x00f0
49 #define VLC_VAR_FLAGS     0xff00
50
51 /** \defgroup var_flags Additive flags
52  * These flags are added to the type field of the variable. Most as a result of
53  * a __var_Change() call, but some may be added at creation time
54  * @{
55  */
56 #define VLC_VAR_HASCHOICE 0x0100
57 #define VLC_VAR_HASMIN    0x0200
58 #define VLC_VAR_HASMAX    0x0400
59 #define VLC_VAR_HASSTEP   0x0800
60
61 #define VLC_VAR_ISCOMMAND 0x2000
62
63 /** Creation flag */
64 /* If the variable is not found on the current module
65    search all parents and finally module config until found */
66 #define VLC_VAR_DOINHERIT 0x8000
67 /**@}*/
68
69 /**
70  * \defgroup var_action Variable actions
71  * These are the different actions that can be used with __var_Change().
72  * The parameters given are the meaning of the two last parameters of
73  * __var_Change() when this action is being used.
74  * @{
75  */
76
77 /**
78  * Set the minimum value of this variable
79  * \param p_val The new minimum value
80  * \param p_val2 Unused
81  */
82 #define VLC_VAR_SETMIN              0x0010
83 /**
84  * Set the maximum value of this variable
85  * \param p_val The new maximum value
86  * \param p_val2 Unused
87  */
88 #define VLC_VAR_SETMAX              0x0011
89 #define VLC_VAR_SETSTEP             0x0012
90
91 /**
92  * Set the value of this variable without triggering any callbacks
93  * \param p_val The new value
94  * \param p_val2 Unused
95  */
96 #define VLC_VAR_SETVALUE            0x0013
97
98 #define VLC_VAR_SETTEXT             0x0014
99 #define VLC_VAR_GETTEXT             0x0015
100
101 #define VLC_VAR_GETMIN              0x0016
102 #define VLC_VAR_GETMAX              0x0017
103 #define VLC_VAR_GETSTEP             0x0018
104
105 #define VLC_VAR_ADDCHOICE           0x0020
106 #define VLC_VAR_DELCHOICE           0x0021
107 #define VLC_VAR_CLEARCHOICES        0x0022
108 #define VLC_VAR_SETDEFAULT          0x0023
109 #define VLC_VAR_GETCHOICES          0x0024
110 #define VLC_VAR_GETLIST             0x0025
111 #define VLC_VAR_CHOICESCOUNT        0x0026
112
113 #define VLC_VAR_INHERITVALUE        0x0030
114
115 #define VLC_VAR_SETISCOMMAND        0x0040
116 /**@}*/
117
118 /*****************************************************************************
119  * Prototypes
120  *****************************************************************************/
121 VLC_EXPORT( int, __var_Create, ( vlc_object_t *, const char *, int ) );
122 VLC_EXPORT( int, __var_Destroy, ( vlc_object_t *, const char * ) );
123
124 VLC_EXPORT( int, __var_Change, ( vlc_object_t *, const char *, int, vlc_value_t *, vlc_value_t * ) );
125
126 VLC_EXPORT( int, __var_Type, ( vlc_object_t *, const char * ) LIBVLC_USED );
127 VLC_EXPORT( int, __var_Set, ( vlc_object_t *, const char *, vlc_value_t ) );
128 VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) );
129 VLC_EXPORT( int, var_SetChecked, ( vlc_object_t *, const char *, int, vlc_value_t ) );
130 VLC_EXPORT( int, var_GetChecked, ( vlc_object_t *, const char *, int, vlc_value_t * ) );
131
132 #define var_Command(a,b,c,d,e) __var_Command( VLC_OBJECT( a ), b, c, d, e )
133 VLC_EXPORT( int, __var_Command, ( vlc_object_t *, const char *, const char *, const char *, char ** ) );
134
135 VLC_EXPORT( void, var_FreeList, ( vlc_value_t *, vlc_value_t * ) );
136
137 /**
138  * __var_Create() with automatic casting.
139  */
140 #define var_Create(a,b,c) __var_Create( VLC_OBJECT(a), b, c )
141 /**
142  * __var_Destroy() with automatic casting
143  */
144 #define var_Destroy(a,b) __var_Destroy( VLC_OBJECT(a), b )
145
146 /**
147  * __var_Change() with automatic casting
148  */
149 #define var_Change(a,b,c,d,e) __var_Change( VLC_OBJECT(a), b, c, d, e )
150
151 /**
152  * __var_Type() with automatic casting
153  */
154 #define var_Type(a,b) __var_Type( VLC_OBJECT(a), b )
155 /**
156  * __var_Set() with automatic casting
157  */
158 #define var_Set(a,b,c) __var_Set( VLC_OBJECT(a), b, c )
159 /**
160  * __var_Get() with automatic casting
161  */
162 #define var_Get(a,b,c) __var_Get( VLC_OBJECT(a), b, c )
163
164 /*****************************************************************************
165  * Variable callbacks
166  *****************************************************************************
167  * int MyCallback( vlc_object_t *p_this,
168  *                 char const *psz_variable,
169  *                 vlc_value_t oldvalue,
170  *                 vlc_value_t newvalue,
171  *                 void *p_data);
172  *****************************************************************************/
173 VLC_EXPORT( int, __var_AddCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) );
174 VLC_EXPORT( int, __var_DelCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) );
175 VLC_EXPORT( int, __var_TriggerCallback, ( vlc_object_t *, const char * ) );
176
177 /**
178  * __var_AddCallback() with automatic casting
179  */
180 #define var_AddCallback(a,b,c,d) __var_AddCallback( VLC_OBJECT(a), b, c, d )
181 /**
182  * __var_DelCallback() with automatic casting
183  */
184 #define var_DelCallback(a,b,c,d) __var_DelCallback( VLC_OBJECT(a), b, c, d )
185 /**
186  * __var_TriggerCallback() with automatic casting
187  */
188 #define var_TriggerCallback(a,b) __var_TriggerCallback( VLC_OBJECT(a), b )
189
190 /*****************************************************************************
191  * helpers functions
192  *****************************************************************************/
193
194 /**
195  * Set the value of an integer variable
196  *
197  * \param p_obj The object that holds the variable
198  * \param psz_name The name of the variable
199  * \param i The new integer value of this variable
200  */
201 static inline int __var_SetInteger( vlc_object_t *p_obj, const char *psz_name, int i )
202 {
203     vlc_value_t val;
204     val.i_int = i;
205     return var_SetChecked( p_obj, psz_name, VLC_VAR_INTEGER, val );
206 }
207
208 /**
209  * Set the value of an boolean variable
210  *
211  * \param p_obj The object that holds the variable
212  * \param psz_name The name of the variable
213  * \param b The new boolean value of this variable
214  */
215 static inline int __var_SetBool( vlc_object_t *p_obj, const char *psz_name, bool b )
216 {
217     vlc_value_t val;
218     val.b_bool = b;
219     return var_SetChecked( p_obj, psz_name, VLC_VAR_BOOL, val );
220 }
221
222 /**
223  * Set the value of a time variable
224  *
225  * \param p_obj The object that holds the variable
226  * \param psz_name The name of the variable
227  * \param i The new time value of this variable
228  */
229 static inline int __var_SetTime( vlc_object_t *p_obj, const char *psz_name, int64_t i )
230 {
231     vlc_value_t val;
232     val.i_time = i;
233     return var_SetChecked( p_obj, psz_name, VLC_VAR_TIME, val );
234 }
235
236 /**
237  * Set the value of a float variable
238  *
239  * \param p_obj The object that holds the variable
240  * \param psz_name The name of the variable
241  * \param f The new float value of this variable
242  */
243 static inline int __var_SetFloat( vlc_object_t *p_obj, const char *psz_name, float f )
244 {
245     vlc_value_t val;
246     val.f_float = f;
247     return var_SetChecked( p_obj, psz_name, VLC_VAR_FLOAT, val );
248 }
249
250 /**
251  * Set the value of a string variable
252  *
253  * \param p_obj The object that holds the variable
254  * \param psz_name The name of the variable
255  * \param psz_string The new string value of this variable
256  */
257 static inline int __var_SetString( vlc_object_t *p_obj, const char *psz_name, const char *psz_string )
258 {
259     vlc_value_t val;
260     val.psz_string = (char *)psz_string;
261     return var_SetChecked( p_obj, psz_name, VLC_VAR_STRING, val );
262 }
263
264 /**
265  * Trigger the callbacks on a void variable
266  *
267  * \param p_obj The object that holds the variable
268  * \param psz_name The name of the variable
269  */
270 static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name )
271 {
272     vlc_value_t val;
273     val.b_bool = true;
274     return var_SetChecked( p_obj, psz_name, VLC_VAR_VOID, val );
275 }
276
277 /**
278  * Set the value of a pointer variable
279  *
280  * \param p_obj The object that holds the variable
281  * \param psz_name The name of the variable
282  * \param ptr The new pointer value of this variable
283  */
284 static inline
285 int __var_SetAddress( vlc_object_t *p_obj, const char *psz_name, void *ptr )
286 {
287     vlc_value_t val;
288     val.p_address = ptr;
289     return var_SetChecked( p_obj, psz_name, VLC_VAR_ADDRESS, val );
290 }
291
292 /**
293  * __var_SetInteger() with automatic casting
294  */
295 #define var_SetInteger(a,b,c)   __var_SetInteger( VLC_OBJECT(a),b,c)
296 /**
297  * __var_SetBool() with automatic casting
298  */
299 #define var_SetBool(a,b,c)      __var_SetBool( VLC_OBJECT(a),b,c)
300 /**
301  * __var_SetTime() with automatic casting
302  */
303 #define var_SetTime(a,b,c)      __var_SetTime( VLC_OBJECT(a),b,c)
304 /**
305  * __var_SetFloat() with automatic casting
306  */
307 #define var_SetFloat(a,b,c)     __var_SetFloat( VLC_OBJECT(a),b,c)
308 /**
309  * __var_SetString() with automatic casting
310  */
311 #define var_SetString(a,b,c)    __var_SetString( VLC_OBJECT(a),b,c)
312 /**
313  * __var_SetVoid() with automatic casting
314  */
315 #define var_SetVoid(a,b)        __var_SetVoid( VLC_OBJECT(a),b)
316 /**
317  * __var_SetAddress() with automatic casting
318  */
319 #define var_SetAddress(o, n, p) __var_SetAddress(VLC_OBJECT(o), n, p)
320
321
322 /**
323  * Get an integer value
324 *
325  * \param p_obj The object that holds the variable
326  * \param psz_name The name of the variable
327  */
328 LIBVLC_USED
329 static inline int __var_GetInteger( vlc_object_t *p_obj, const char *psz_name )
330 {
331     vlc_value_t val;
332     if( !var_GetChecked( p_obj, psz_name, VLC_VAR_INTEGER, &val ) )
333         return val.i_int;
334     else
335         return 0;
336 }
337
338 /**
339  * Get a boolean value
340  *
341  * \param p_obj The object that holds the variable
342  * \param psz_name The name of the variable
343  */
344 LIBVLC_USED
345 static inline bool __var_GetBool( vlc_object_t *p_obj, const char *psz_name )
346 {
347     vlc_value_t val; val.b_bool = false;
348
349     if( !var_GetChecked( p_obj, psz_name, VLC_VAR_BOOL, &val ) )
350         return val.b_bool;
351     else
352         return false;
353 }
354
355 /**
356  * Get a time value
357  *
358  * \param p_obj The object that holds the variable
359  * \param psz_name The name of the variable
360  */
361 LIBVLC_USED
362 static inline int64_t __var_GetTime( vlc_object_t *p_obj, const char *psz_name )
363 {
364     vlc_value_t val; val.i_time = 0L;
365     if( !var_GetChecked( p_obj, psz_name, VLC_VAR_TIME, &val ) )
366         return val.i_time;
367     else
368         return 0;
369 }
370
371 /**
372  * Get a float value
373  *
374  * \param p_obj The object that holds the variable
375  * \param psz_name The name of the variable
376  */
377 LIBVLC_USED
378 static inline float __var_GetFloat( vlc_object_t *p_obj, const char *psz_name )
379 {
380     vlc_value_t val; val.f_float = 0.0;
381     if( !var_GetChecked( p_obj, psz_name, VLC_VAR_FLOAT, &val ) )
382         return val.f_float;
383     else
384         return 0.0;
385 }
386
387 /**
388  * Get a string value
389  *
390  * \param p_obj The object that holds the variable
391  * \param psz_name The name of the variable
392  */
393 LIBVLC_USED
394 static inline char *__var_GetString( vlc_object_t *p_obj, const char *psz_name )
395 {
396     vlc_value_t val; val.psz_string = NULL;
397     if( var_GetChecked( p_obj, psz_name, VLC_VAR_STRING, &val ) )
398         return NULL;
399     else
400         return val.psz_string;
401 }
402
403 LIBVLC_USED
404 static inline char *__var_GetNonEmptyString( vlc_object_t *p_obj, const char *psz_name )
405 {
406     vlc_value_t val;
407     if( var_GetChecked( p_obj, psz_name, VLC_VAR_STRING, &val ) )
408         return NULL;
409     if( val.psz_string && *val.psz_string )
410         return val.psz_string;
411     free( val.psz_string );
412     return NULL;
413 }
414
415
416 /**
417  * __var_GetInteger() with automatic casting
418  */
419 #define var_GetInteger(a,b)   __var_GetInteger( VLC_OBJECT(a),b)
420 /**
421  * __var_GetBool() with automatic casting
422  */
423 #define var_GetBool(a,b)   __var_GetBool( VLC_OBJECT(a),b)
424 /**
425  * __var_GetTime() with automatic casting
426  */
427 #define var_GetTime(a,b)   __var_GetTime( VLC_OBJECT(a),b)
428 /**
429  * __var_GetFloat() with automatic casting
430  */
431 #define var_GetFloat(a,b)   __var_GetFloat( VLC_OBJECT(a),b)
432 /**
433  * __var_GetString() with automatic casting
434  */
435 #define var_GetString(a,b)   __var_GetString( VLC_OBJECT(a),b)
436 #define var_GetNonEmptyString(a,b)   __var_GetNonEmptyString( VLC_OBJECT(a),b)
437
438
439
440 /**
441  * Increment an integer variable
442  * \param p_obj the object that holds the variable
443  * \param psz_name the name of the variable
444  */
445 static inline void __var_IncInteger( vlc_object_t *p_obj, const char *psz_name )
446 {
447     int i_val = __var_GetInteger( p_obj, psz_name );
448     __var_SetInteger( p_obj, psz_name, ++i_val );
449 }
450 #define var_IncInteger(a,b) __var_IncInteger( VLC_OBJECT(a), b )
451
452 /**
453  * Decrement an integer variable
454  * \param p_obj the object that holds the variable
455  * \param psz_name the name of the variable
456  */
457 static inline void __var_DecInteger( vlc_object_t *p_obj, const char *psz_name )
458 {
459     int i_val = __var_GetInteger( p_obj, psz_name );
460     __var_SetInteger( p_obj, psz_name, --i_val );
461 }
462 #define var_DecInteger(a,b) __var_DecInteger( VLC_OBJECT(a), b )
463
464 /**
465  * Create a integer variable with inherit and get its value.
466  *
467  * \param p_obj The object that holds the variable
468  * \param psz_name The name of the variable
469  */
470 LIBVLC_USED
471 static inline int __var_CreateGetInteger( vlc_object_t *p_obj, const char *psz_name )
472 {
473     __var_Create( p_obj, psz_name, VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
474     return __var_GetInteger( p_obj, psz_name );
475 }
476
477 /**
478  * Create a boolean variable with inherit and get its value.
479  *
480  * \param p_obj The object that holds the variable
481  * \param psz_name The name of the variable
482  */
483 LIBVLC_USED
484 static inline bool __var_CreateGetBool( vlc_object_t *p_obj, const char *psz_name )
485 {
486     __var_Create( p_obj, psz_name, VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
487     return __var_GetBool( p_obj, psz_name );
488 }
489
490 /**
491  * Create a time variable with inherit and get its value.
492  *
493  * \param p_obj The object that holds the variable
494  * \param psz_name The name of the variable
495  */
496 LIBVLC_USED
497 static inline int64_t __var_CreateGetTime( vlc_object_t *p_obj, const char *psz_name )
498 {
499     __var_Create( p_obj, psz_name, VLC_VAR_TIME | VLC_VAR_DOINHERIT );
500     return __var_GetTime( p_obj, psz_name );
501 }
502
503 /**
504  * Create a float variable with inherit and get its value.
505  *
506  * \param p_obj The object that holds the variable
507  * \param psz_name The name of the variable
508  */
509 LIBVLC_USED
510 static inline float __var_CreateGetFloat( vlc_object_t *p_obj, const char *psz_name )
511 {
512     __var_Create( p_obj, psz_name, VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
513     return __var_GetFloat( p_obj, psz_name );
514 }
515
516 /**
517  * Create a string variable with inherit and get its value.
518  *
519  * \param p_obj The object that holds the variable
520  * \param psz_name The name of the variable
521  */
522 LIBVLC_USED
523 static inline char *__var_CreateGetString( vlc_object_t *p_obj,
524                                            const char *psz_name )
525 {
526     __var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT );
527     return __var_GetString( p_obj, psz_name );
528 }
529
530 LIBVLC_USED
531 static inline char *__var_CreateGetNonEmptyString( vlc_object_t *p_obj,
532                                                    const char *psz_name )
533 {
534     __var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT );
535     return __var_GetNonEmptyString( p_obj, psz_name );
536 }
537
538 /**
539  * __var_CreateGetInteger() with automatic casting
540  */
541 #define var_CreateGetInteger(a,b)   __var_CreateGetInteger( VLC_OBJECT(a),b)
542 /**
543  * __var_CreateGetBool() with automatic casting
544  */
545 #define var_CreateGetBool(a,b)   __var_CreateGetBool( VLC_OBJECT(a),b)
546 /**
547  * __var_CreateGetTime() with automatic casting
548  */
549 #define var_CreateGetTime(a,b)   __var_CreateGetTime( VLC_OBJECT(a),b)
550 /**
551  * __var_CreateGetFloat() with automatic casting
552  */
553 #define var_CreateGetFloat(a,b)   __var_CreateGetFloat( VLC_OBJECT(a),b)
554 /**
555  * __var_CreateGetString() with automatic casting
556  */
557 #define var_CreateGetString(a,b)   __var_CreateGetString( VLC_OBJECT(a),b)
558 #define var_CreateGetNonEmptyString(a,b)   __var_CreateGetNonEmptyString( VLC_OBJECT(a),b)
559
560 /**
561  * Create a integer command variable with inherit and get its value.
562  *
563  * \param p_obj The object that holds the variable
564  * \param psz_name The name of the variable
565  */
566 LIBVLC_USED
567 static inline int __var_CreateGetIntegerCommand( vlc_object_t *p_obj, const char *psz_name )
568 {
569     __var_Create( p_obj, psz_name, VLC_VAR_INTEGER | VLC_VAR_DOINHERIT
570                                    | VLC_VAR_ISCOMMAND );
571     return __var_GetInteger( p_obj, psz_name );
572 }
573
574 /**
575  * Create a boolean command variable with inherit and get its value.
576  *
577  * \param p_obj The object that holds the variable
578  * \param psz_name The name of the variable
579  */
580 LIBVLC_USED
581 static inline bool __var_CreateGetBoolCommand( vlc_object_t *p_obj, const char *psz_name )
582 {
583     __var_Create( p_obj, psz_name, VLC_VAR_BOOL | VLC_VAR_DOINHERIT
584                                    | VLC_VAR_ISCOMMAND );
585     return __var_GetBool( p_obj, psz_name );
586 }
587
588 /**
589  * Create a time command variable with inherit and get its value.
590  *
591  * \param p_obj The object that holds the variable
592  * \param psz_name The name of the variable
593  */
594 LIBVLC_USED
595 static inline int64_t __var_CreateGetTimeCommand( vlc_object_t *p_obj, const char *psz_name )
596 {
597     __var_Create( p_obj, psz_name, VLC_VAR_TIME | VLC_VAR_DOINHERIT
598                                    | VLC_VAR_ISCOMMAND );
599     return __var_GetTime( p_obj, psz_name );
600 }
601
602 /**
603  * Create a float command variable with inherit and get its value.
604  *
605  * \param p_obj The object that holds the variable
606  * \param psz_name The name of the variable
607  */
608 LIBVLC_USED
609 static inline float __var_CreateGetFloatCommand( vlc_object_t *p_obj, const char *psz_name )
610 {
611     __var_Create( p_obj, psz_name, VLC_VAR_FLOAT | VLC_VAR_DOINHERIT
612                                    | VLC_VAR_ISCOMMAND );
613     return __var_GetFloat( p_obj, psz_name );
614 }
615
616 /**
617  * Create a string command variable with inherit and get its value.
618  *
619  * \param p_obj The object that holds the variable
620  * \param psz_name The name of the variable
621  */
622 LIBVLC_USED
623 static inline char *__var_CreateGetStringCommand( vlc_object_t *p_obj,
624                                            const char *psz_name )
625 {
626     __var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT
627                                    | VLC_VAR_ISCOMMAND );
628     return __var_GetString( p_obj, psz_name );
629 }
630
631 LIBVLC_USED
632 static inline char *__var_CreateGetNonEmptyStringCommand( vlc_object_t *p_obj,
633                                                    const char *psz_name )
634 {
635     __var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT
636                                    | VLC_VAR_ISCOMMAND );
637     return __var_GetNonEmptyString( p_obj, psz_name );
638 }
639
640 /**
641  * __var_CreateGetInteger() with automatic casting
642  */
643 #define var_CreateGetIntegerCommand(a,b)   __var_CreateGetIntegerCommand( VLC_OBJECT(a),b)
644 /**
645  * __var_CreateGetBoolCommand() with automatic casting
646  */
647 #define var_CreateGetBoolCommand(a,b)   __var_CreateGetBoolCommand( VLC_OBJECT(a),b)
648 /**
649  * __var_CreateGetTimeCommand() with automatic casting
650  */
651 #define var_CreateGetTimeCommand(a,b)   __var_CreateGetTimeCommand( VLC_OBJECT(a),b)
652 /**
653  * __var_CreateGetFloat() with automatic casting
654  */
655 #define var_CreateGetFloatCommand(a,b)   __var_CreateGetFloatCommand( VLC_OBJECT(a),b)
656 /**
657  * __var_CreateGetStringCommand() with automatic casting
658  */
659 #define var_CreateGetStringCommand(a,b)   __var_CreateGetStringCommand( VLC_OBJECT(a),b)
660 #define var_CreateGetNonEmptyStringCommand(a,b)   __var_CreateGetNonEmptyStringCommand( VLC_OBJECT(a),b)
661
662 static inline int __var_CountChoices( vlc_object_t *p_obj, const char *psz_name )
663 {
664     vlc_value_t count;
665     if( __var_Change( p_obj, psz_name, VLC_VAR_CHOICESCOUNT, &count, NULL ) )
666         return 0;
667     return count.i_int;
668 }
669 /**
670  * __var_CountChoices() with automatic casting
671  */
672 #define var_CountChoices(a,b) __var_CountChoices( VLC_OBJECT(a),b)
673
674 /**
675  * @}
676  */
677 #endif /*  _VLC_VARIABLES_H */