mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 04:47:16 +00:00
2008-04-28 Mike Kestner <mkestner@novell.com>
* glib/GType.cs : Add a few missing static fields. svn path=/trunk/gtk-sharp/; revision=102063
This commit is contained in:
parent
e7489cc003
commit
d5e5c13a1f
|
@ -1,3 +1,7 @@
|
||||||
|
2008-04-28 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* glib/GType.cs : Add a few missing static fields.
|
||||||
|
|
||||||
2008-04-24 Mike Kestner <mkestner@novell.com>
|
2008-04-24 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* gdk/Window.custom (Destroy): take a normal ref for the native
|
* gdk/Window.custom (Destroy): take a normal ref for the native
|
||||||
|
|
|
@ -45,6 +45,8 @@ namespace GLib {
|
||||||
public static readonly GType Boolean = new GType ((IntPtr) TypeFundamentals.TypeBoolean);
|
public static readonly GType Boolean = new GType ((IntPtr) TypeFundamentals.TypeBoolean);
|
||||||
public static readonly GType Int = new GType ((IntPtr) TypeFundamentals.TypeInt);
|
public static readonly GType Int = new GType ((IntPtr) TypeFundamentals.TypeInt);
|
||||||
public static readonly GType UInt = new GType ((IntPtr) TypeFundamentals.TypeUInt);
|
public static readonly GType UInt = new GType ((IntPtr) TypeFundamentals.TypeUInt);
|
||||||
|
public static readonly GType Long = new GType ((IntPtr) TypeFundamentals.TypeLong);
|
||||||
|
public static readonly GType ULong = new GType ((IntPtr) TypeFundamentals.TypeULong);
|
||||||
public static readonly GType Int64 = new GType ((IntPtr) TypeFundamentals.TypeInt64);
|
public static readonly GType Int64 = new GType ((IntPtr) TypeFundamentals.TypeInt64);
|
||||||
public static readonly GType UInt64 = new GType ((IntPtr) TypeFundamentals.TypeUInt64);
|
public static readonly GType UInt64 = new GType ((IntPtr) TypeFundamentals.TypeUInt64);
|
||||||
public static readonly GType Enum = new GType ((IntPtr) TypeFundamentals.TypeEnum);
|
public static readonly GType Enum = new GType ((IntPtr) TypeFundamentals.TypeEnum);
|
||||||
|
@ -54,6 +56,7 @@ namespace GLib {
|
||||||
public static readonly GType String = new GType ((IntPtr) TypeFundamentals.TypeString);
|
public static readonly GType String = new GType ((IntPtr) TypeFundamentals.TypeString);
|
||||||
public static readonly GType Pointer = new GType ((IntPtr) TypeFundamentals.TypePointer);
|
public static readonly GType Pointer = new GType ((IntPtr) TypeFundamentals.TypePointer);
|
||||||
public static readonly GType Boxed = new GType ((IntPtr) TypeFundamentals.TypeBoxed);
|
public static readonly GType Boxed = new GType ((IntPtr) TypeFundamentals.TypeBoxed);
|
||||||
|
public static readonly GType Param = new GType ((IntPtr) TypeFundamentals.TypeParam);
|
||||||
public static readonly GType Object = new GType ((IntPtr) TypeFundamentals.TypeObject);
|
public static readonly GType Object = new GType ((IntPtr) TypeFundamentals.TypeObject);
|
||||||
|
|
||||||
static Hashtable types = new Hashtable ();
|
static Hashtable types = new Hashtable ();
|
||||||
|
|
Loading…
Reference in a new issue