]> git.sesse.net Git - vlc/blobdiff - include/vlc/vlc.h
Audio output.
[vlc] / include / vlc / vlc.h
index adff93cac62c0e5d1b12649c3e4ed73786caeef4..8658f45769937e497ae6af268d6facea759d838c 100644 (file)
@@ -2,7 +2,7 @@
  * vlc.h: global header for vlc
  *****************************************************************************
  * Copyright (C) 1998, 1999, 2000 VideoLAN
- * $Id: vlc.h,v 1.19 2002/12/13 01:56:29 gbazin Exp $
+ * $Id: vlc.h,v 1.21 2002/12/15 16:28:20 gbazin Exp $
  *
  * 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
@@ -41,6 +41,7 @@ typedef union
     char *          psz_string;
     void *          p_address;
     vlc_object_t *  p_object;
+    vlc_list_t *    p_list;
 
     /* Make sure the structure is at least 64bits */
     struct { char a, b, c, d, e, f, g, h; } padding;
@@ -51,6 +52,7 @@ struct vlc_list_t
 {
     int             i_count;
     vlc_value_t *   p_values;
+    int *           pi_types;
 
 };