comparison src/audacious/tuple.h @ 3304:00286cde2485 trunk

Make filename a const
author Christian Birchinger <joker@netswarm.net>
date Fri, 10 Aug 2007 15:14:20 +0200
parents 008530664ba1
children e20c1f720153
comparison
equal deleted inserted replaced
3303:eaf68ed98166 3304:00286cde2485
32 TUPLE_INT, 32 TUPLE_INT,
33 TUPLE_UNKNOWN 33 TUPLE_UNKNOWN
34 } TupleValueType; 34 } TupleValueType;
35 35
36 Tuple *tuple_new(void); 36 Tuple *tuple_new(void);
37 Tuple *tuple_new_from_filename(gchar *filename); 37 Tuple *tuple_new_from_filename(const gchar *filename);
38 gboolean tuple_associate_string(Tuple *tuple, const gchar *field, const gchar *string); 38 gboolean tuple_associate_string(Tuple *tuple, const gchar *field, const gchar *string);
39 gboolean tuple_associate_int(Tuple *tuple, const gchar *field, gint integer); 39 gboolean tuple_associate_int(Tuple *tuple, const gchar *field, gint integer);
40 void tuple_disassociate(Tuple *tuple, const gchar *field); 40 void tuple_disassociate(Tuple *tuple, const gchar *field);
41 TupleValueType tuple_get_value_type(Tuple *tuple, const gchar *field); 41 TupleValueType tuple_get_value_type(Tuple *tuple, const gchar *field);
42 const gchar *tuple_get_string(Tuple *tuple, const gchar *field); 42 const gchar *tuple_get_string(Tuple *tuple, const gchar *field);