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