]> git.sesse.net Git - vlc/blob - include/vlc_variables.h
Remove slow and leaking var_AcquireMutex
[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 #include <assert.h>
29
30 /**
31  * \file
32  * This file defines functions and structures for dynamic variables in vlc
33  */
34
35 /**
36  * \defgroup variables Variables
37  *
38  * Functions for using the object variables in vlc.
39  *
40  * Vlc have a very powerful "object variable" infrastructure useful
41  * for many things.
42  *
43  * @{
44  */
45
46 /*****************************************************************************
47  * Variable types - probably very incomplete
48  *****************************************************************************/
49 #define VLC_VAR_TYPE      0x00ff
50 #define VLC_VAR_CLASS     0x00f0
51 #define VLC_VAR_FLAGS     0xff00
52
53 /** \defgroup var_flags Additive flags
54  * These flags are added to the type field of the variable. Most as a result of
55  * a __var_Change() call, but some may be added at creation time
56  * @{
57  */
58 #define VLC_VAR_HASCHOICE 0x0100
59 #define VLC_VAR_HASMIN    0x0200
60 #define VLC_VAR_HASMAX    0x0400
61 #define VLC_VAR_HASSTEP   0x0800
62
63 #define VLC_VAR_ISCOMMAND 0x2000
64
65 /** Creation flag */
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_FREECHOICES         0x0025
111 #define VLC_VAR_GETLIST             0x0026
112 #define VLC_VAR_FREELIST            0x0027
113 #define VLC_VAR_CHOICESCOUNT        0x0028
114
115 #define VLC_VAR_INHERITVALUE        0x0030
116 #define VLC_VAR_TRIGGER_CALLBACKS   0x0035
117
118 #define VLC_VAR_SETISCOMMAND        0x0040
119 /**@}*/
120
121 /*****************************************************************************
122  * Prototypes
123  *****************************************************************************/
124 VLC_EXPORT( int, __var_Create, ( vlc_object_t *, const char *, int ) );
125 VLC_EXPORT( int, __var_Destroy, ( vlc_object_t *, const char * ) );
126
127 VLC_EXPORT( int, __var_Change, ( vlc_object_t *, const char *, int, vlc_value_t *, vlc_value_t * ) );
128
129 VLC_EXPORT( int, __var_Type, ( vlc_object_t *, const char * ) LIBVLC_USED );
130 VLC_EXPORT( int, __var_Set, ( vlc_object_t *, const char *, vlc_value_t ) );
131 VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) );
132
133 #define var_Command(a,b,c,d,e) __var_Command( VLC_OBJECT( a ), b, c, d, e )
134 VLC_EXPORT( int, __var_Command, ( vlc_object_t *, const char *, const char *, const char *, char ** ) );
135
136 /**
137  * __var_Create() with automatic casting.
138  */
139 #define var_Create(a,b,c) __var_Create( VLC_OBJECT(a), b, c )
140 /**
141  * __var_Destroy() with automatic casting
142  */
143 #define var_Destroy(a,b) __var_Destroy( VLC_OBJECT(a), b )
144
145 /**
146  * __var_Change() with automatic casting
147  */
148 #define var_Change(a,b,c,d,e) __var_Change( VLC_OBJECT(a), b, c, d, e )
149
150 /**
151  * __var_Type() with automatic casting
152  */
153 #define var_Type(a,b) __var_Type( VLC_OBJECT(a), b )
154 /**
155  * __var_Set() with automatic casting
156  */
157 #define var_Set(a,b,c) __var_Set( VLC_OBJECT(a), b, c )
158 /**
159  * __var_Get() with automatic casting
160  */
161 #define var_Get(a,b,c) __var_Get( VLC_OBJECT(a), b, c )
162
163 /*****************************************************************************
164  * Variable callbacks
165  *****************************************************************************
166  * int MyCallback( vlc_object_t *p_this,
167  *                 char const *psz_variable,
168  *                 vlc_value_t oldvalue,
169  *                 vlc_value_t newvalue,
170  *                 void *p_data);
171  *****************************************************************************/
172 VLC_EXPORT( int, __var_AddCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) );
173 VLC_EXPORT( int, __var_DelCallback, ( vlc_object_t *, const char *, vlc_callback_t, void * ) );
174 VLC_EXPORT( int, __var_TriggerCallback, ( vlc_object_t *, const char * ) );
175
176 /**
177  * __var_AddCallback() with automatic casting
178  */
179 #define var_AddCallback(a,b,c,d) __var_AddCallback( VLC_OBJECT(a), b, c, d )
180
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 /**
187  * __var_TriggerCallback() with automatic casting
188  */
189 #define var_TriggerCallback(a,b) __var_TriggerCallback( VLC_OBJECT(a), b )
190
191 /*****************************************************************************
192  * helpers functions
193  *****************************************************************************/
194
195 /**
196  * This function assert the variable is of the expected type or it
197  * is not defined
198  */
199 static inline void __var_AssertType( vlc_object_t *p_obj, const char *psz_name,
200                                      int i_expected )
201 {
202     const int i_type = __var_Type( p_obj, psz_name ) & VLC_VAR_CLASS;
203     assert( i_type == 0 || i_type == (i_expected&VLC_VAR_CLASS) );
204 }
205
206 /**
207  * Set the value of an integer variable
208  *
209  * \param p_obj The object that holds the variable
210  * \param psz_name The name of the variable
211  * \param i The new integer value of this variable
212  */
213 static inline int __var_SetInteger( vlc_object_t *p_obj, const char *psz_name, int i )
214 {
215     vlc_value_t val;
216     val.i_int = i;
217     __var_AssertType( p_obj, psz_name, VLC_VAR_INTEGER );
218     return __var_Set( p_obj, psz_name, val );
219 }
220 #define var_SetInteger(a,b,c)   __var_SetInteger( VLC_OBJECT(a),b,c)
221 /**
222  * Set the value of an boolean variable
223  *
224  * \param p_obj The object that holds the variable
225  * \param psz_name The name of the variable
226  * \param b The new boolean value of this variable
227  */
228 static inline int __var_SetBool( vlc_object_t *p_obj, const char *psz_name, bool b )
229 {
230     vlc_value_t val;
231     val.b_bool = b;
232     __var_AssertType( p_obj, psz_name, VLC_VAR_BOOL );
233     return __var_Set( p_obj, psz_name, val );
234 }
235
236 /**
237  * Set the value of a time variable
238  *
239  * \param p_obj The object that holds the variable
240  * \param psz_name The name of the variable
241  * \param i The new time value of this variable
242  */
243 static inline int __var_SetTime( vlc_object_t *p_obj, const char *psz_name, int64_t i )
244 {
245     vlc_value_t val;
246     val.i_time = i;
247     __var_AssertType( p_obj, psz_name, VLC_VAR_TIME );
248     return __var_Set( p_obj, psz_name, val );
249 }
250
251 /**
252  * Set the value of a float variable
253  *
254  * \param p_obj The object that holds the variable
255  * \param psz_name The name of the variable
256  * \param f The new float value of this variable
257  */
258 static inline int __var_SetFloat( vlc_object_t *p_obj, const char *psz_name, float f )
259 {
260     vlc_value_t val;
261     val.f_float = f;
262     __var_AssertType( p_obj, psz_name, VLC_VAR_FLOAT );
263     return __var_Set( p_obj, psz_name, val );
264 }
265
266 /**
267  * Set the value of a string variable
268  *
269  * \param p_obj The object that holds the variable
270  * \param psz_name The name of the variable
271  * \param psz_string The new string value of this variable
272  */
273 static inline int __var_SetString( vlc_object_t *p_obj, const char *psz_name, const char *psz_string )
274 {
275     vlc_value_t val;
276     val.psz_string = (char *)psz_string;
277     __var_AssertType( p_obj, psz_name, VLC_VAR_STRING );
278     return __var_Set( p_obj, psz_name, val );
279 }
280
281 /**
282  * Trigger the callbacks on a void variable
283  *
284  * \param p_obj The object that holds the variable
285  * \param psz_name The name of the variable
286  */
287 static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name )
288 {
289     vlc_value_t val;
290     val.b_bool = true;
291     __var_AssertType( p_obj, psz_name, VLC_VAR_VOID );
292     return __var_Set( p_obj, psz_name, val );
293 }
294 #define var_SetVoid(a,b)        __var_SetVoid( VLC_OBJECT(a),b)
295
296 /**
297  * __var_SetBool() with automatic casting
298  */
299 #define var_SetBool(a,b,c)   __var_SetBool( VLC_OBJECT(a),b,c)
300
301 /**
302  * __var_SetTime() with automatic casting
303  */
304 #define var_SetTime(a,b,c)      __var_SetTime( VLC_OBJECT(a),b,c)
305 /**
306  * __var_SetFloat() with automatic casting
307  */
308 #define var_SetFloat(a,b,c)     __var_SetFloat( VLC_OBJECT(a),b,c)
309 /**
310  * __var_SetString() with automatic casting
311  */
312 #define var_SetString(a,b,c)     __var_SetString( VLC_OBJECT(a),b,c)
313
314 /**
315  * Get an integer value
316 *
317  * \param p_obj The object that holds the variable
318  * \param psz_name The name of the variable
319  */
320 LIBVLC_USED
321 static inline int __var_GetInteger( vlc_object_t *p_obj, const char *psz_name )
322 {
323     vlc_value_t val;val.i_int = 0;
324     __var_AssertType( p_obj, psz_name, VLC_VAR_INTEGER );
325     if( !__var_Get( p_obj, psz_name, &val ) )
326         return val.i_int;
327     else
328         return 0;
329 }
330
331 /**
332  * Get a boolean value
333  *
334  * \param p_obj The object that holds the variable
335  * \param psz_name The name of the variable
336  */
337 LIBVLC_USED
338 static inline int __var_GetBool( vlc_object_t *p_obj, const char *psz_name )
339 {
340     vlc_value_t val; val.b_bool = false;
341
342     __var_AssertType( p_obj, psz_name, VLC_VAR_BOOL );
343     if( !__var_Get( p_obj, psz_name, &val ) )
344         return val.b_bool;
345     else
346         return false;
347 }
348
349 /**
350  * Get a time value
351  *
352  * \param p_obj The object that holds the variable
353  * \param psz_name The name of the variable
354  */
355 LIBVLC_USED
356 static inline int64_t __var_GetTime( vlc_object_t *p_obj, const char *psz_name )
357 {
358     vlc_value_t val; val.i_time = 0L;
359     __var_AssertType( p_obj, psz_name, VLC_VAR_TIME );
360     if( !__var_Get( p_obj, psz_name, &val ) )
361         return val.i_time;
362     else
363         return 0;
364 }
365
366 /**
367  * Get a float value
368  *
369  * \param p_obj The object that holds the variable
370  * \param psz_name The name of the variable
371  */
372 LIBVLC_USED
373 static inline float __var_GetFloat( vlc_object_t *p_obj, const char *psz_name )
374 {
375     vlc_value_t val; val.f_float = 0.0;
376     __var_AssertType( p_obj, psz_name, VLC_VAR_FLOAT );
377     if( !__var_Get( p_obj, psz_name, &val ) )
378         return val.f_float;
379     else
380         return 0.0;
381 }
382
383 /**
384  * Get a string value
385  *
386  * \param p_obj The object that holds the variable
387  * \param psz_name The name of the variable
388  */
389 LIBVLC_USED
390 static inline char *__var_GetString( vlc_object_t *p_obj, const char *psz_name )
391 {
392     vlc_value_t val; val.psz_string = NULL;
393     __var_AssertType( p_obj, psz_name, VLC_VAR_STRING );
394     if( __var_Get( p_obj, psz_name, &val ) )
395         return NULL;
396     else
397         return val.psz_string;
398 }
399
400 LIBVLC_USED
401 static inline char *__var_GetNonEmptyString( vlc_object_t *p_obj, const char *psz_name )
402 {
403     vlc_value_t val;
404     __var_AssertType( p_obj, psz_name, VLC_VAR_STRING );
405     if( __var_Get( p_obj, psz_name, &val ) )
406         return NULL;
407     if( *val.psz_string )
408         return val.psz_string;
409     free( val.psz_string );
410     return NULL;
411 }
412
413
414 /**
415  * __var_GetInteger() with automatic casting
416  */
417 #define var_GetInteger(a,b)   __var_GetInteger( VLC_OBJECT(a),b)
418 /**
419  * __var_GetBool() with automatic casting
420  */
421 #define var_GetBool(a,b)   __var_GetBool( VLC_OBJECT(a),b)
422 /**
423  * __var_GetTime() with automatic casting
424  */
425 #define var_GetTime(a,b)   __var_GetTime( VLC_OBJECT(a),b)
426 /**
427  * __var_GetFloat() with automatic casting
428  */
429 #define var_GetFloat(a,b)   __var_GetFloat( VLC_OBJECT(a),b)
430 /**
431  * __var_GetString() with automatic casting
432  */
433 #define var_GetString(a,b)   __var_GetString( VLC_OBJECT(a),b)
434 #define var_GetNonEmptyString(a,b)   __var_GetNonEmptyString( VLC_OBJECT(a),b)
435
436
437
438 /**
439  * Increment an integer variable
440  * \param p_obj the object that holds the variable
441  * \param psz_name the name of the variable
442  */
443 static inline void __var_IncInteger( vlc_object_t *p_obj, const char *psz_name )
444 {
445     int i_val = __var_GetInteger( p_obj, psz_name );
446     __var_SetInteger( p_obj, psz_name, ++i_val );
447 }
448 #define var_IncInteger(a,b) __var_IncInteger( VLC_OBJECT(a), b )
449
450 /**
451  * Decrement an integer variable
452  * \param p_obj the object that holds the variable
453  * \param psz_name the name of the variable
454  */
455 static inline void __var_DecInteger( vlc_object_t *p_obj, const char *psz_name )
456 {
457     int i_val = __var_GetInteger( p_obj, psz_name );
458     __var_SetInteger( p_obj, psz_name, --i_val );
459 }
460 #define var_DecInteger(a,b) __var_DecInteger( VLC_OBJECT(a), b )
461
462 /**
463  * Create a integer variable with inherit and get its value.
464  *
465  * \param p_obj The object that holds the variable
466  * \param psz_name The name of the variable
467  */
468 LIBVLC_USED
469 static inline int __var_CreateGetInteger( vlc_object_t *p_obj, const char *psz_name )
470 {
471     __var_Create( p_obj, psz_name, VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
472     return __var_GetInteger( p_obj, psz_name );
473 }
474
475 /**
476  * Create a boolean variable with inherit and get its value.
477  *
478  * \param p_obj The object that holds the variable
479  * \param psz_name The name of the variable
480  */
481 LIBVLC_USED
482 static inline int __var_CreateGetBool( vlc_object_t *p_obj, const char *psz_name )
483 {
484     __var_Create( p_obj, psz_name, VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
485     return __var_GetBool( p_obj, psz_name );
486 }
487
488 /**
489  * Create a time variable with inherit and get its value.
490  *
491  * \param p_obj The object that holds the variable
492  * \param psz_name The name of the variable
493  */
494 LIBVLC_USED
495 static inline int64_t __var_CreateGetTime( vlc_object_t *p_obj, const char *psz_name )
496 {
497     __var_Create( p_obj, psz_name, VLC_VAR_TIME | VLC_VAR_DOINHERIT );
498     return __var_GetTime( p_obj, psz_name );
499 }
500
501 /**
502  * Create a float variable with inherit and get its value.
503  *
504  * \param p_obj The object that holds the variable
505  * \param psz_name The name of the variable
506  */
507 LIBVLC_USED
508 static inline float __var_CreateGetFloat( vlc_object_t *p_obj, const char *psz_name )
509 {
510     __var_Create( p_obj, psz_name, VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
511     return __var_GetFloat( p_obj, psz_name );
512 }
513
514 /**
515  * Create a string variable with inherit and get its value.
516  *
517  * \param p_obj The object that holds the variable
518  * \param psz_name The name of the variable
519  */
520 LIBVLC_USED
521 static inline char *__var_CreateGetString( vlc_object_t *p_obj,
522                                            const char *psz_name )
523 {
524     __var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT );
525     return __var_GetString( p_obj, psz_name );
526 }
527
528 LIBVLC_USED
529 static inline char *__var_CreateGetNonEmptyString( vlc_object_t *p_obj,
530                                                    const char *psz_name )
531 {
532     __var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT );
533     return __var_GetNonEmptyString( p_obj, psz_name );
534 }
535
536 /**
537  * __var_CreateGetInteger() with automatic casting
538  */
539 #define var_CreateGetInteger(a,b)   __var_CreateGetInteger( VLC_OBJECT(a),b)
540 /**
541  * __var_CreateGetBool() with automatic casting
542  */
543 #define var_CreateGetBool(a,b)   __var_CreateGetBool( VLC_OBJECT(a),b)
544 /**
545  * __var_CreateGetTime() with automatic casting
546  */
547 #define var_CreateGetTime(a,b)   __var_CreateGetTime( VLC_OBJECT(a),b)
548 /**
549  * __var_CreateGetFloat() with automatic casting
550  */
551 #define var_CreateGetFloat(a,b)   __var_CreateGetFloat( VLC_OBJECT(a),b)
552 /**
553  * __var_CreateGetString() with automatic casting
554  */
555 #define var_CreateGetString(a,b)   __var_CreateGetString( VLC_OBJECT(a),b)
556 #define var_CreateGetNonEmptyString(a,b)   __var_CreateGetNonEmptyString( VLC_OBJECT(a),b)
557
558 /**
559  * Create a integer command variable with inherit and get its value.
560  *
561  * \param p_obj The object that holds the variable
562  * \param psz_name The name of the variable
563  */
564 LIBVLC_USED
565 static inline int __var_CreateGetIntegerCommand( vlc_object_t *p_obj, const char *psz_name )
566 {
567     __var_Create( p_obj, psz_name, VLC_VAR_INTEGER | VLC_VAR_DOINHERIT
568                                    | VLC_VAR_ISCOMMAND );
569     return __var_GetInteger( p_obj, psz_name );
570 }
571
572 /**
573  * Create a boolean command variable with inherit and get its value.
574  *
575  * \param p_obj The object that holds the variable
576  * \param psz_name The name of the variable
577  */
578 LIBVLC_USED
579 static inline int __var_CreateGetBoolCommand( vlc_object_t *p_obj, const char *psz_name )
580 {
581     __var_Create( p_obj, psz_name, VLC_VAR_BOOL | VLC_VAR_DOINHERIT
582                                    | VLC_VAR_ISCOMMAND );
583     return __var_GetBool( p_obj, psz_name );
584 }
585
586 /**
587  * Create a time command variable with inherit and get its value.
588  *
589  * \param p_obj The object that holds the variable
590  * \param psz_name The name of the variable
591  */
592 LIBVLC_USED
593 static inline int64_t __var_CreateGetTimeCommand( vlc_object_t *p_obj, const char *psz_name )
594 {
595     __var_Create( p_obj, psz_name, VLC_VAR_TIME | VLC_VAR_DOINHERIT
596                                    | VLC_VAR_ISCOMMAND );
597     return __var_GetTime( p_obj, psz_name );
598 }
599
600 /**
601  * Create a float command variable with inherit and get its value.
602  *
603  * \param p_obj The object that holds the variable
604  * \param psz_name The name of the variable
605  */
606 LIBVLC_USED
607 static inline float __var_CreateGetFloatCommand( vlc_object_t *p_obj, const char *psz_name )
608 {
609     __var_Create( p_obj, psz_name, VLC_VAR_FLOAT | VLC_VAR_DOINHERIT
610                                    | VLC_VAR_ISCOMMAND );
611     return __var_GetFloat( p_obj, psz_name );
612 }
613
614 /**
615  * Create a string command variable with inherit and get its value.
616  *
617  * \param p_obj The object that holds the variable
618  * \param psz_name The name of the variable
619  */
620 LIBVLC_USED
621 static inline char *__var_CreateGetStringCommand( vlc_object_t *p_obj,
622                                            const char *psz_name )
623 {
624     __var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT
625                                    | VLC_VAR_ISCOMMAND );
626     return __var_GetString( p_obj, psz_name );
627 }
628
629 LIBVLC_USED
630 static inline char *__var_CreateGetNonEmptyStringCommand( vlc_object_t *p_obj,
631                                                    const char *psz_name )
632 {
633     __var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT
634                                    | VLC_VAR_ISCOMMAND );
635     return __var_GetNonEmptyString( p_obj, psz_name );
636 }
637
638 /**
639  * __var_CreateGetInteger() with automatic casting
640  */
641 #define var_CreateGetIntegerCommand(a,b)   __var_CreateGetIntegerCommand( VLC_OBJECT(a),b)
642 /**
643  * __var_CreateGetBoolCommand() with automatic casting
644  */
645 #define var_CreateGetBoolCommand(a,b)   __var_CreateGetBoolCommand( VLC_OBJECT(a),b)
646 /**
647  * __var_CreateGetTimeCommand() with automatic casting
648  */
649 #define var_CreateGetTimeCommand(a,b)   __var_CreateGetTimeCommand( VLC_OBJECT(a),b)
650 /**
651  * __var_CreateGetFloat() with automatic casting
652  */
653 #define var_CreateGetFloatCommand(a,b)   __var_CreateGetFloatCommand( VLC_OBJECT(a),b)
654 /**
655  * __var_CreateGetStringCommand() with automatic casting
656  */
657 #define var_CreateGetStringCommand(a,b)   __var_CreateGetStringCommand( VLC_OBJECT(a),b)
658 #define var_CreateGetNonEmptyStringCommand(a,b)   __var_CreateGetNonEmptyStringCommand( VLC_OBJECT(a),b)
659 /**
660  * @}
661  */
662 #endif /*  _VLC_VARIABLES_H */