summaryrefslogtreecommitdiff
path: root/gstreamer-sharp/Tag.custom
diff options
context:
space:
mode:
authorMaarten Bosmans <mkbosmans@gmail.com>2009-05-25 12:09:52 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-25 12:09:52 +0200
commitf665c749b6d370f9e696132ffbf92e5479528981 (patch)
tree8f708dfa0dddba0ae8ac141b7638250107d51e6d /gstreamer-sharp/Tag.custom
parente37e8d7c177c737210d81014205472013d29a7c5 (diff)
Use libgst*.dll in DllImport attribute, instead of gst*.dll
Nescessary for .NET, which doesn't prefix the library filename with lib automatically.
Diffstat (limited to 'gstreamer-sharp/Tag.custom')
-rw-r--r--gstreamer-sharp/Tag.custom4
1 files changed, 2 insertions, 2 deletions
diff --git a/gstreamer-sharp/Tag.custom b/gstreamer-sharp/Tag.custom
index 9421402..9a03005 100644
--- a/gstreamer-sharp/Tag.custom
+++ b/gstreamer-sharp/Tag.custom
@@ -9,14 +9,14 @@ public static void Register (string name, Gst.TagFlags flag, System.Type type, s
Register (name, flag, gt, nick, blurb, func);
}
-[DllImport ("gstreamer-0.10.dll") ]
+[DllImport("libgstreamer-0.10.dll") ]
static extern void gst_tag_merge_strings_with_comma (out GLib.Value dest, ref GLib.Value src);
public static void MergeStringsWithComma (out GLib.Value dest, ref GLib.Value src) {
gst_tag_merge_strings_with_comma (out dest, ref src);
}
-[DllImport ("gstreamer-0.10.dll") ]
+[DllImport("libgstreamer-0.10.dll") ]
static extern void gst_tag_merge_use_first (out GLib.Value dest, ref GLib.Value src);
public static void MergeUseFirst (out GLib.Value dest, ref GLib.Value src) {