diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-22 14:29:40 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-22 14:29:40 +0000 |
commit | 0e7d3d993b4cc1db5e498fa6779386a771f08c97 (patch) | |
tree | 558e87c5ed984fe6fb4375d20499636a0c796cbc /src/xine-engine/configfile.c | |
parent | a3cdd89faa5fd449b807d2d6a9c818649032003b (diff) | |
download | xine-lib-0e7d3d993b4cc1db5e498fa6779386a771f08c97.tar.gz xine-lib-0e7d3d993b4cc1db5e498fa6779386a771f08c97.tar.bz2 |
API review part I
- bring our beloved xine_t * back (no more const there)
- remove const on some input plugin functions
where the data changes with media (dvd, ...) changes
and is therefore not const
CVS patchset: 2740
CVS date: 2002/09/22 14:29:40
Diffstat (limited to 'src/xine-engine/configfile.c')
-rw-r--r-- | src/xine-engine/configfile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c index 03c050015..2d4c1dc82 100644 --- a/src/xine-engine/configfile.c +++ b/src/xine-engine/configfile.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: configfile.c,v 1.34 2002/09/21 12:20:48 f1rmb Exp $ + * $Id: configfile.c,v 1.35 2002/09/22 14:29:40 mroi Exp $ * * config object (was: file) management - implementation * @@ -547,9 +547,9 @@ static void xine_config_update_string (config_values_t *this, /* * load/save config data from/to afile (e.g. $HOME/.xine/config) */ -void xine_config_load (xine_p xine_ro, const char *filename) { +void xine_config_load (xine_t *xine, const char *filename) { - config_values_t *this = xine_ro->config; + config_values_t *this = xine->config; FILE *f_config; #ifdef LOG @@ -611,7 +611,7 @@ void xine_config_load (xine_p xine_ro, const char *filename) { } } -void xine_config_save (xine_p xine_ro, const char *filename) { +void xine_config_save (xine_t *xine_ro, const char *filename) { config_values_t *this = xine_ro->config; FILE *f_config; |