view libaudacious/configdb.h @ 1029:54dd4df67688 trunk

[svn] - src/tagging_mp4.c, fileinfo.c, libmp4.c: Finish conversion to internal container code. - include/mpeg4ip.h, mpeg4ip_version.h, systems.h: Remove libmp4v2. - libmp4v2/: Remove libmp4v2. - Makefile.in: Remove references to libmp4v2. - configure.ac: Remove references to libmp4v2.
author nenolod
date Fri, 12 May 2006 06:48:55 -0700
parents cb178e5ad177
children 5cf8de9f2c28
line wrap: on
line source

#ifndef CONFIGDB_H
#define CONFIGDB_H

#include <glib.h>


typedef struct _ConfigDb ConfigDb;


G_BEGIN_DECLS

    ConfigDb *bmp_cfg_db_open();
    void bmp_cfg_db_close(ConfigDb *db);

    gboolean bmp_cfg_db_get_string(ConfigDb *db,
                                   const gchar *section,
                                   const gchar *key,
                                   gchar **value);
    gboolean bmp_cfg_db_get_int(ConfigDb *db,
                                const gchar *section,
                                const gchar *key,
                                gint *value);
    gboolean bmp_cfg_db_get_bool(ConfigDb *db,
                                 const gchar *section,
                                 const gchar *key,
                                 gboolean *value);
    gboolean bmp_cfg_db_get_float(ConfigDb *db,
                                  const gchar *section,
                                  const gchar *key,
                                  gfloat *value);
    gboolean bmp_cfg_db_get_double(ConfigDb *db,
                                   const gchar *section,
                                   const gchar *key,
                                   gdouble *value);

    void bmp_cfg_db_set_string(ConfigDb *db,
                               const gchar *section,
                               const gchar *key,
                               gchar *value);
    void bmp_cfg_db_set_int(ConfigDb *db,
                            const gchar *section,
                            const gchar *key,
                            gint value);
    void bmp_cfg_db_set_bool(ConfigDb *db,
                             const gchar *section,
                             const gchar *key,
                             gboolean value);
    void bmp_cfg_db_set_float(ConfigDb *db,
                              const gchar *section,
                              const gchar *key,
                              gfloat value);
    void bmp_cfg_db_set_double(ConfigDb *db,
                               const gchar *section,
                               const gchar *key,
                               gdouble value);

    void bmp_cfg_db_unset_key(ConfigDb *db,
                              const gchar *section,
                              const gchar *key);

G_END_DECLS

#endif // CONFIGDB_H