gstreamer/gstreamer-sharp/GError.cs

57 lines
1 KiB
C#
Raw Normal View History

//
// Copyright (c) 2009 Sebastian Dröge <sebastian.droege@collabora.co.uk>
//
// This class implements some helper functions to handle GError
//
using System;
using System.Runtime.InteropServices;
namespace Gst {
2009-04-16 20:19:59 +00:00
[StructLayout (LayoutKind.Sequential) ]
internal struct GError {
uint domain_quark;
int code;
IntPtr message;
2009-04-16 20:19:59 +00:00
public uint Domain {
get {
return domain_quark;
}
set {
domain_quark = value;
}
2009-04-07 09:27:20 +00:00
}
2009-04-16 20:19:59 +00:00
public int Code {
get {
return code;
}
set {
code = value;
}
}
2009-04-07 09:27:20 +00:00
2009-04-16 20:19:59 +00:00
public string Message {
get {
if (message == IntPtr.Zero)
return null;
return GLib.Marshaller.Utf8PtrToString (message);
}
set {
if (message != IntPtr.Zero)
GLib.Marshaller.Free (message);
message = GLib.Marshaller.StringToPtrGStrdup (value);
}
}
public void Unset () {
GLib.Marshaller.Free (message);
message = IntPtr.Zero;
code = 0;
domain_quark = 0;
}
2009-04-07 09:27:20 +00:00
}
}