]> git.sesse.net Git - vlc/blobdiff - src/misc/variables.h
macosx: Fix controller playlist toggling to use the contentRect and not the window...
[vlc] / src / misc / variables.h
index ecb20854a06c72e0afcdf0727f620d438efd79a7..96dc450a50ef096227e814f036b0c8b74d3da664 100644 (file)
@@ -1,3 +1,33 @@
+/*****************************************************************************
+ * variables.h: object variables typedefs
+ *****************************************************************************
+ * Copyright (C) 2002-2006 the VideoLAN team
+ * $Id$
+ *
+ * Authors: Samuel Hocevar <sam@zoy.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
+# error This header file can only be included from LibVLC.
+#endif
+
+#ifndef __LIBVLC_VARIABLES_H
+# define __LIBVLC_VARIABLES_H 1
+
 typedef struct callback_entry_t callback_entry_t;
 
 /**
@@ -38,11 +68,11 @@ struct variable_t
     vlc_list_t   choices_text;
 
     /** Set to TRUE if the variable is in a callback */
-    vlc_bool_t   b_incallback;
+    bool   b_incallback;
 
     /** Number of registered callbacks */
     int                i_entries;
     /** Array of registered callbacks */
     callback_entry_t * p_entries;
 };
-
+#endif