From 2148d73307ce2bb23d2ae845074e7762034ad549 Mon Sep 17 00:00:00 2001 From: Stephan Sundermann Date: Sat, 21 Dec 2013 18:14:35 +0100 Subject: [PATCH] Dllmap: Fixed dll names in Message.cs --- sources/custom/Message.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sources/custom/Message.cs b/sources/custom/Message.cs index 9c3f770d85..f14610a2b7 100644 --- a/sources/custom/Message.cs +++ b/sources/custom/Message.cs @@ -20,7 +20,7 @@ namespace Gst { partial class Message { - [DllImport ("gstreamer-1.0") ] + [DllImport ("libgstreamer-1.0-0.dll") ] static extern void gst_message_parse_error (IntPtr msg, out IntPtr err, out IntPtr debug); public void ParseError (out GLib.GException error, out string debug) { @@ -43,10 +43,10 @@ namespace Gst { error = new GLib.GException (err); } - [DllImport("gstreamer-1.0", CallingConvention = CallingConvention.Cdecl)] + [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] static extern IntPtr gst_message_get_stream_status_object(IntPtr raw); - [DllImport("gstreamer-1.0", CallingConvention = CallingConvention.Cdecl)] + [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)] static extern void gst_message_set_stream_status_object(IntPtr raw, IntPtr value); public GLib.Value StreamStatusObject {