mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
Dllmap: Fixed dll names in Message.cs
This commit is contained in:
parent
c4349297bf
commit
2148d73307
1 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue