Dllmap: Fixed dll names in Message.cs

This commit is contained in:
Stephan Sundermann 2013-12-21 18:14:35 +01:00
parent c4349297bf
commit 2148d73307

View file

@ -20,7 +20,7 @@ namespace Gst {
partial class Message 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); 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) { public void ParseError (out GLib.GException error, out string debug) {
@ -43,10 +43,10 @@ namespace Gst {
error = new GLib.GException (err); 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); 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); static extern void gst_message_set_stream_status_object(IntPtr raw, IntPtr value);
public GLib.Value StreamStatusObject { public GLib.Value StreamStatusObject {