diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2001-09-18 22:49:56 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2001-09-18 22:49:56 +0000 |
commit | 7feb6d5f55750a0dc5f90f7bdb01f480b0bdc7cc (patch) | |
tree | b173725fe49e7d5a87b04722d93792123cfca6ec /mixlib/mix_config.h | |
parent | 16f418f5f4caa26135bc0c8841a3737bf438a7b4 (diff) | |
download | mdk-7feb6d5f55750a0dc5f90f7bdb01f480b0bdc7cc.tar.gz mdk-7feb6d5f55750a0dc5f90f7bdb01f480b0bdc7cc.tar.bz2 |
(mix_config_remove) new function to remove configuration items
Diffstat (limited to 'mixlib/mix_config.h')
-rw-r--r-- | mixlib/mix_config.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mixlib/mix_config.h b/mixlib/mix_config.h index 2f1b1a0..1b82a51 100644 --- a/mixlib/mix_config.h +++ b/mixlib/mix_config.h @@ -1,7 +1,7 @@ /* -*-c-*- ---------------- mix_config.h : * Basic config storage utility. * ------------------------------------------------------------------ - * Last change: Time-stamp: <2001-07-02 01:21:11 jao> + * $Id: mix_config.h,v 1.5 2001/09/18 22:49:56 jao Exp $ * ------------------------------------------------------------------ * Copyright (C) 2001 Free Software Foundation, Inc. * @@ -59,6 +59,9 @@ mix_config_update (mix_config_t *config, const gchar *key, const gchar *value); extern void mix_config_update_integer (mix_config_t *config, const gchar *key, gint value); +extern void +mix_config_remove (mix_config_t *config, const gchar *key); + /* save the current configuration */ extern void mix_config_save (const mix_config_t *config); |