summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/gconf/test-gconf.c
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-07-01 15:39:58 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-07-01 15:39:58 +0000
commit473fa96cd83e937690078490494ff4d188a865ba (patch)
treebeee9307c6cb51d72d1ac7d3167751131e091cc7 /gst-libs/gst/gconf/test-gconf.c
parentaeaea3c248a189e9772b9acc468883ca95e56be7 (diff)
downloadgst-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/test-gconf.c')
-rw-r--r--gst-libs/gst/gconf/test-gconf.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/gst-libs/gst/gconf/test-gconf.c b/gst-libs/gst/gconf/test-gconf.c
new file mode 100644
index 00000000..8ce459a8
--- /dev/null
+++ b/gst-libs/gst/gconf/test-gconf.c
@@ -0,0 +1,10 @@
+#include "gconf.h"
+
+int
+main (int argc, char *argv[])
+{
+ printf ("Default video sink : %s\n",
+ gst_gconf_get_string ("default/videosink"));
+ printf ("Default audio sink : %s\n",
+ gst_gconf_get_string ("default/audiosink"));
+}