]> git.sesse.net Git - vlc/commitdiff
* include/vlc/vlc.h: added a new pi_types field to vlc_list_t. This field will be...
authorGildas Bazin <gbazin@videolan.org>
Sun, 15 Dec 2002 16:28:20 +0000 (16:28 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 15 Dec 2002 16:28:20 +0000 (16:28 +0000)
later on by the object variables functions. I'm adding it now because it also happens to
solve a binary compatibility problem between gcc and bcc. (depending on compilers,
structs of 32 < size <= 64 bits can be returned either in a register or in the stack).

include/vlc/vlc.h

index ebab90e8b9c085b3d7611536de4d856238d3617f..8658f45769937e497ae6af268d6facea759d838c 100644 (file)
@@ -2,7 +2,7 @@
  * vlc.h: global header for vlc
  *****************************************************************************
  * Copyright (C) 1998, 1999, 2000 VideoLAN
- * $Id: vlc.h,v 1.20 2002/12/14 19:34:07 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
@@ -52,6 +52,7 @@ struct vlc_list_t
 {
     int             i_count;
     vlc_value_t *   p_values;
+    int *           pi_types;
 
 };