Commit bd92601c authored by Gildas Bazin's avatar Gildas Bazin

* include/vlc/vlc.h: added a new pi_types field to vlc_list_t. This field will be used
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).
parent 25b75704
......@@ -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;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment