diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-07-01 15:39:58 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-07-01 15:39:58 +0000 |
commit | 473fa96cd83e937690078490494ff4d188a865ba (patch) | |
tree | beee9307c6cb51d72d1ac7d3167751131e091cc7 /gst-libs/gst/gconf/gconf.h | |
parent | aeaea3c248a189e9772b9acc468883ca95e56be7 (diff) | |
download | gst-plugins-bad-473fa96cd83e937690078490494ff4d188a865ba.tar.gz gst-plugins-bad-473fa96cd83e937690078490494ff4d188a865ba.tar.bz2 gst-plugins-bad-473fa96cd83e937690078490494ff4d188a865ba.zip |
gconf stuff
Original commit message from CVS:
gconf stuff
Diffstat (limited to 'gst-libs/gst/gconf/gconf.h')
-rw-r--r-- | gst-libs/gst/gconf/gconf.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gst-libs/gst/gconf/gconf.h b/gst-libs/gst/gconf/gconf.h new file mode 100644 index 00000000..53678544 --- /dev/null +++ b/gst-libs/gst/gconf/gconf.h @@ -0,0 +1,23 @@ +#ifndef GST_GCONF_H +#define GST_GCONF_H + +/* + * this library handles interaction with GConf + */ + +#include <gst/gst.h> +#include <gconf/gconf-client.h> + +gchar * gst_gconf_get_string (const gchar *key); +void gst_gconf_set_string (const gchar *key, + const gchar *value); + +gboolean gst_gconf_render_bin (const gchar *key, + GstElement **element); + +/* +guint gst_gconf_notify_add (const gchar *key, + GConfClientNotifyFunc func, + gpointer user_data); +*/ +#endif /* GST_GCONF_H */ |