summaryrefslogtreecommitdiff
path: root/gstreamer-sharp/Tag.custom
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-04-21 14:31:29 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-04-21 14:31:29 +0200
commita23154fc2fc47c6664b0981780ac4324098fb4f5 (patch)
tree2fd03b61129cbeb5b8584aa24617625c240e340b /gstreamer-sharp/Tag.custom
parenta31f1e81802f7a0d883955a16d37e33e5a19ba27 (diff)
Complete/fix bindings for Gst.Tag and Gst.TagList
Diffstat (limited to 'gstreamer-sharp/Tag.custom')
-rw-r--r--gstreamer-sharp/Tag.custom11
1 files changed, 11 insertions, 0 deletions
diff --git a/gstreamer-sharp/Tag.custom b/gstreamer-sharp/Tag.custom
index 62c19c7..08ae51d 100644
--- a/gstreamer-sharp/Tag.custom
+++ b/gstreamer-sharp/Tag.custom
@@ -1,3 +1,14 @@
+public static System.Type GetType (string tag) {
+ GLib.GType gt = GetGType (tag);
+ return (Type) gt;
+}
+
+public static void Register (string name, Gst.TagFlags flag, System.Type type, string nick, string blurb, Gst.TagMergeFunc func) {
+ GLib.GType gt = (GLib.GType) (type);
+
+ Register (name, flag, gt, nick, blurb, func);
+}
+
public const string Title = "title";
public const string TitleSortname = "title-sortname";
public const string Artist = "artist";