Ryujinx-GtkSharp/gdk/RGBA.cs
Mikkel Kruse Johnsen a8d9a119d8 Update to Gtk 3.18.2
Had to change gapi2xml.pl to use the new properties method/macro in gtkwindow.c
- Issue, "invisible-chars" and "inner-border" is generated twice in gtkentry.c

Made patch to gwin32registrykey to use little endian by default. So Windows om ARM may fail.
2015-11-10 11:37:34 +01:00

25 lines
443 B
C#

namespace Gdk {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
public partial struct RGBA {
public static explicit operator GLib.Value (Gdk.RGBA boxed)
{
GLib.Value val = GLib.Value.Empty;
val.Init (Gdk.RGBA.GType);
val.Val = boxed;
return val;
}
public static explicit operator Gdk.RGBA (GLib.Value val)
{
return (Gdk.RGBA) val.Val;
}
}
}