summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-09-21 12:20:47 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-09-21 12:20:47 +0000
commitaa630333ab3df4f03e34b4f20c73d79823cc401f (patch)
tree8b46bf0e6ad820e0d5b4d3fcfad953cae9611d64
parentf80cfbccb99f3bb3dec7d69756303cd80726dbba (diff)
downloadxine-lib-aa630333ab3df4f03e34b4f20c73d79823cc401f.tar.gz
xine-lib-aa630333ab3df4f03e34b4f20c73d79823cc401f.tar.bz2
Rename xine_(load/save/reset)_config to xine_config_(load/save/reset).
CVS patchset: 2728 CVS date: 2002/09/21 12:20:47
-rw-r--r--include/xine.h.in8
-rw-r--r--src/xine-engine/configfile.c6
-rw-r--r--src/xine-engine/xine_interface.c4
3 files changed, 9 insertions, 9 deletions
diff --git a/include/xine.h.in b/include/xine.h.in
index a440957a8..a37efac93 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.17 2002/09/21 11:58:40 f1rmb Exp $
+ * $Id: xine.h.in,v 1.18 2002/09/21 12:20:47 f1rmb Exp $
*
* public xine-lib (libxine) interface and documentation
*
@@ -747,9 +747,9 @@ void xine_config_update_entry (xine_p self,
/*
* load/save config data from/to afile (e.g. $HOME/.xine/config)
*/
-void xine_load_config (xine_p self, const char *cfg_filename);
-void xine_save_config (xine_p self, const char *cfg_filename);
-void xine_reset_config (xine_p self);
+void xine_config_load (xine_p self, const char *cfg_filename);
+void xine_config_save (xine_p self, const char *cfg_filename);
+void xine_config_reset (xine_p self);
/*
* xine event mechanism
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c
index 776020a23..03c050015 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.33 2002/09/18 14:31:39 mroi Exp $
+ * $Id: configfile.c,v 1.34 2002/09/21 12:20:48 f1rmb Exp $
*
* config object (was: file) management - implementation
*
@@ -547,7 +547,7 @@ static void xine_config_update_string (config_values_t *this,
/*
* load/save config data from/to afile (e.g. $HOME/.xine/config)
*/
-void xine_load_config (xine_p xine_ro, const char *filename) {
+void xine_config_load (xine_p xine_ro, const char *filename) {
config_values_t *this = xine_ro->config;
FILE *f_config;
@@ -611,7 +611,7 @@ void xine_load_config (xine_p xine_ro, const char *filename) {
}
}
-void xine_save_config (xine_p xine_ro, const char *filename) {
+void xine_config_save (xine_p xine_ro, const char *filename) {
config_values_t *this = xine_ro->config;
FILE *f_config;
diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c
index 8e82096a4..970989fff 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.20 2002/09/21 11:58:40 f1rmb Exp $
+ * $Id: xine_interface.c,v 1.21 2002/09/21 12:20:48 f1rmb Exp $
*
* convenience/abstraction layer, functions to implement
* libxine's public interface
@@ -283,7 +283,7 @@ void xine_config_update_entry (xine_p this, xine_cfg_entry_t *entry) {
}
-void xine_reset_config (xine_p this) {
+void xine_config_reset (xine_p this) {
config_values_t *config = this->config;
cfg_entry_t *entry;