]> git.sesse.net Git - vlc/blobdiff - include/variables.h
* include/vlc_interface.h: forgot that in last commit.
[vlc] / include / variables.h
index a37dcdc6c0233b1d3369913e22c4b0c0623d6bf4..416314b8c7552e1de0807e0b231ea2421c8a60cb 100644 (file)
@@ -1,16 +1,17 @@
 /*****************************************************************************
  * variables.h: variables handling
  *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- * $Id: variables.h,v 1.19 2003/12/02 12:57:35 gbazin Exp $
+ * Copyright (C) 2002-2004 VideoLAN
+ * $Id: variables.h,v 1.22 2004/01/25 18:17:08 zorglub Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
+ *          Gildas Bazin <gbazin@netcourrier.com>
  *
  * 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
@@ -35,8 +36,8 @@
 typedef struct callback_entry_t callback_entry_t;
 
 /**
- * The structure describing a variable. 
- * \note vlc_value_t is the common union for variable values  
+ * The structure describing a variable.
+ * \note vlc_value_t is the common union for variable values
  */
 struct variable_t
 {
@@ -137,36 +138,37 @@ struct variable_t
  * \param p_val The new minimum value
  * \param p_val2 Unused
  */
-#define VLC_VAR_SETMIN        0x0010
+#define VLC_VAR_SETMIN              0x0010
 /**
  * Set the maximum value of this variable
  * \param p_val The new maximum value
  * \param p_val2 Unused
  */
-#define VLC_VAR_SETMAX        0x0011
-#define VLC_VAR_SETSTEP       0x0012
+#define VLC_VAR_SETMAX              0x0011
+#define VLC_VAR_SETSTEP             0x0012
 
 /**
  * Set the value of this variable without triggering any callbacks
  * \param p_val The new value
  * \param p_val2 Unused
  */
-#define VLC_VAR_SETVALUE      0x0013
-
-#define VLC_VAR_SETTEXT       0x0014
-#define VLC_VAR_GETTEXT       0x0015
-
-#define VLC_VAR_ADDCHOICE     0x0020
-#define VLC_VAR_DELCHOICE     0x0021
-#define VLC_VAR_CLEARCHOICES  0x0022
-#define VLC_VAR_SETDEFAULT    0x0023
-#define VLC_VAR_GETCHOICES    0x0024
-#define VLC_VAR_FREECHOICES   0x0025
-#define VLC_VAR_GETLIST       0x0026
-#define VLC_VAR_FREELIST      0x0027
-#define VLC_VAR_CHOICESCOUNT  0x0028
-
-#define VLC_VAR_INHERITVALUE  0x0030
+#define VLC_VAR_SETVALUE            0x0013
+
+#define VLC_VAR_SETTEXT             0x0014
+#define VLC_VAR_GETTEXT             0x0015
+
+#define VLC_VAR_ADDCHOICE           0x0020
+#define VLC_VAR_DELCHOICE           0x0021
+#define VLC_VAR_CLEARCHOICES        0x0022
+#define VLC_VAR_SETDEFAULT          0x0023
+#define VLC_VAR_GETCHOICES          0x0024
+#define VLC_VAR_FREECHOICES         0x0025
+#define VLC_VAR_GETLIST             0x0026
+#define VLC_VAR_FREELIST            0x0027
+#define VLC_VAR_CHOICESCOUNT        0x0028
+
+#define VLC_VAR_INHERITVALUE        0x0030
+#define VLC_VAR_TRIGGER_CALLBACKS   0x0035
 /**@}*/
 
 /*****************************************************************************