diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-08-16 16:29:26 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-08-16 16:29:26 +0100 |
commit | d3e91bb09c694dc8a71b77f098ab251755763410 (patch) | |
tree | 1e2d82197a62813e8dd0b49e112e1b0f965fc5bd /include | |
parent | f43c0bf92a48824ed075473e9035d4c0dfe5cf33 (diff) | |
parent | 7047d9e5acf97c91a523c99ccc4b008a35a3e094 (diff) | |
download | xine-lib-d3e91bb09c694dc8a71b77f098ab251755763410.tar.gz xine-lib-d3e91bb09c694dc8a71b77f098ab251755763410.tar.bz2 |
Merge all but the open()/glibc workaround from 1.1.
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 5f916bd5a..04f35f680 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -1533,6 +1533,16 @@ void xine_config_update_entry (xine_t *self, const xine_cfg_entry_t *entry) XINE_PROTECTED; /* + * translation of old configuration entry names + */ +typedef struct { + const char *old; + const char *new; +} xine_config_entry_translation_t; + +void xine_config_set_translation_user (const xine_config_entry_translation_t *) XINE_PROTECTED; + +/* * load/save config data from/to afile (e.g. $HOME/.xine/config) */ void xine_config_load (xine_t *self, const char *cfg_filename) XINE_PROTECTED; |