Ryujinx-GtkSharp/glib/TypeFundamentals.cs

39 lines
592 B
C#
Raw Normal View History

// GLib.TypeFundamentals.cs : Standard Types enumeration
//
// Author: Mike Kestner <mkestner@speakeasy.net>
//
// (c) 2001 Mike Kestner
namespace GLib {
/// <summary>
/// TypeFundamentals enumeration
/// </summary>
///
/// <remarks>
/// The built-in types available in GLib.
/// </remarks>
public enum TypeFundamentals {
TypeInvalid,
TypeNone,
TypeInterface,
TypeChar,
TypeUChar,
TypeBoolean,
TypeInt,
TypeUInt,
TypeLong,
TypeULong,
TypeEnum,
TypeFlags,
TypeFloat,
TypeDouble,
TypeString,
TypePointer,
TypeBoxed,
TypeParam,
TypeObject,
}
}