VLC  2.1.0-git
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
variables.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * variables.h: object variables typedefs
3  *****************************************************************************
4  * Copyright (C) 1999-2012 VLC authors and VideoLAN
5  *
6  * Authors: Samuel Hocevar <sam@zoy.org>
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22 
23 #ifndef LIBVLC_VARIABLES_H
24 # define LIBVLC_VARIABLES_H 1
25 
26 # include <vlc_atomic.h>
27 
28 /**
29  * Private LibVLC data for each object.
30  */
32 
34 {
35  char *psz_name; /* given name */
36 
37  /* Object variables */
38  void *var_root;
41 
42  /* Objects thread synchronization */
43  int pipes[2];
45 
46  /* Objects management */
49 
50  /* Objects tree structure */
51  vlc_object_internals_t *next; /* next sibling */
52  vlc_object_internals_t *prev; /* previous sibling */
53  vlc_object_internals_t *first; /* first child */
54 };
55 
56 # define vlc_internals( obj ) (((vlc_object_internals_t*)(VLC_OBJECT(obj)))-1)
57 # define vlc_externals( priv ) ((vlc_object_t *)((priv) + 1))
58 
59 
61 
62 typedef struct variable_ops_t
63 {
65  void (*pf_dup) ( vlc_value_t * );
66  void (*pf_free) ( vlc_value_t * );
68 
69 /**
70  * The structure describing a variable.
71  * \note vlc_value_t is the common union for variable values
72  */
73 struct variable_t
74 {
75  char * psz_name; /**< The variable unique name (must be first) */
76 
77  /** The variable's exported value */
79 
80  /** The variable display name, mainly for use by the interfaces */
81  char * psz_text;
82 
84 
85  int i_type; /**< The type of the variable */
86  unsigned i_usage; /**< Reference count */
87 
88  /** If the variable has min/max/step values */
90 
91  /** Index of the default choice, if the variable is to be chosen in
92  * a list */
93  int i_default;
94  /** List of choices */
96  /** List of friendly names for the choices */
98 
99  /** Set to TRUE if the variable is in a callback */
101 
102  /** Number of registered callbacks */
104  /** Array of registered callbacks */
106 };
107 
108 extern void var_DestroyAll( vlc_object_t * );
109 
110 #endif