diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2005-01-30 16:51:20 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2005-01-30 16:51:20 +0000 |
commit | da4e239c0d78a100c0c647d52bc334b676246717 (patch) | |
tree | 80daf9b90052142eb0f5f3bf805140618f69b7c0 /src/xine-engine/configfile.h | |
parent | e2ea766a40e939d5a21431e64153c10c40ee48d1 (diff) | |
download | xine-lib-da4e239c0d78a100c0c647d52bc334b676246717.tar.gz xine-lib-da4e239c0d78a100c0c647d52bc334b676246717.tar.bz2 |
First part of the plugin loader changes
- duplicate all strings, needed to allow plugin unloading
- move duplicated code to functions
This should not change anything to the behavior of the config system.
CVS patchset: 7373
CVS date: 2005/01/30 16:51:20
Diffstat (limited to 'src/xine-engine/configfile.h')
-rw-r--r-- | src/xine-engine/configfile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/configfile.h b/src/xine-engine/configfile.h index a239ea24d..f1e7d8956 100644 --- a/src/xine-engine/configfile.h +++ b/src/xine-engine/configfile.h @@ -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.h,v 1.36 2004/12/12 22:01:31 mroi Exp $ + * $Id: configfile.h,v 1.37 2005/01/30 16:51:20 tmattern Exp $ * * config file management * @@ -77,8 +77,8 @@ struct cfg_entry_s { char **enum_values; /* help info for the user */ - const char *description; - const char *help; + char *description; + char *help; /* user experience level */ int exp_level; |