diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 00:43:06 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 00:43:06 +0000 |
commit | 484c1150d9efa76f11e4f6fbaf953f10948cddb8 (patch) | |
tree | f2962fc70c948e3c9df5892d9c51e6d6f151df35 | |
parent | 2dcf8f38edd30609269a6fd2607757fb127635de (diff) | |
download | xine-lib-484c1150d9efa76f11e4f6fbaf953f10948cddb8.tar.gz xine-lib-484c1150d9efa76f11e4f6fbaf953f10948cddb8.tar.bz2 |
Again changes so to accept the strict case (constants).
CVS patchset: 8610
CVS date: 2007/02/20 00:43:06
-rw-r--r-- | include/xine.h.in | 4 | ||||
-rw-r--r-- | src/xine-engine/xine_interface.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index c776fe3fa..986046081 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.165 2007/02/19 23:20:19 dgp85 Exp $ + * $Id: xine.h.in,v 1.166 2007/02/20 00:43:06 dgp85 Exp $ * * public xine-lib (libxine) interface and documentation * @@ -1488,7 +1488,7 @@ int xine_config_register_range (xine_t *self, int xine_config_register_enum (xine_t *self, const char *key, int def_value, - char **values, + const char **values, const char *description, const char *help, int exp_level, diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c index afbd15051..0dd48081e 100644 --- a/src/xine-engine/xine_interface.c +++ b/src/xine-engine/xine_interface.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_interface.c,v 1.101 2007/02/03 16:31:55 dsalt Exp $ + * $Id: xine_interface.c,v 1.102 2007/02/20 00:43:06 dgp85 Exp $ * * convenience/abstraction layer, functions to implement * libxine's public interface @@ -136,7 +136,7 @@ int xine_config_register_range (xine_t *self, int xine_config_register_enum (xine_t *self, const char *key, int def_value, - char **values, + const char **values, const char *description, const char *help, int exp_level, |