about summary refs log tree commit diff
path: root/gi/glib/types.ha
blob: 2492c4e0fcbf464fdd44ded918d3e2a7c875fb4f (plain)
1
2
3
4
5
6
7
8
9
10
export type Type = size;

// Boolean type used by GLib and related libraries, equivalent to gboolean in C.
export type boolean = uint;

// True value of [[boolean]].
export def TRUE: boolean = 1;

// False value of [[boolean]].
export def FALSE: boolean = 0;