39 lines
592 B
C#
39 lines
592 B
C#
|
// 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,
|
||
|
}
|
||
|
}
|