summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/gconf/gconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/gst/gconf/gconf.h')
-rw-r--r--gst-libs/gst/gconf/gconf.h23
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 */