qml: make TabButtonExt text bold
[vlc.git] / src / misc / variables.h
blob711cd14b5a34cd41d9b2f54c3db918f1f9f555f3
1 /*****************************************************************************
2 * variables.h: object variables typedefs
3 *****************************************************************************
4 * Copyright (C) 1999-2012 VLC authors and VideoLAN
6 * Authors: Samuel Hocevar <sam@zoy.org>
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.
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.
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 *****************************************************************************/
23 #ifndef LIBVLC_VARIABLES_H
24 # define LIBVLC_VARIABLES_H 1
26 # include <vlc_list.h>
28 struct vlc_res;
30 /**
31 * Private LibVLC data for each object.
33 typedef struct vlc_object_internals vlc_object_internals_t;
35 struct vlc_object_internals
37 vlc_object_t *parent; /**< Parent object (or NULL) */
38 const char *typename; /**< Object type human-readable name */
40 /* Object variables */
41 void *var_root;
42 vlc_mutex_t var_lock;
44 /* Object resources */
45 struct vlc_res *resources;
48 # define vlc_internals(o) ((o)->priv)
49 # define vlc_externals(priv) (abort(), (void *)(priv))
51 extern void var_DestroyAll( vlc_object_t * );
53 /**
54 * Return a list of all variable names
56 * There is no warranty that the returned variables will be still alive after
57 * the return of this function.
59 * @return a NULL terminated list of char *, each elements and the return value
60 * must be freed by the caller
62 char **var_GetAllNames(vlc_object_t *);
64 #endif