diff options
author | Drew DeVault <drew@ddevault.org> | 2025-03-21 10:40:06 +0100 |
---|---|---|
committer | Alexey Yerin <yyp@disroot.org> | 2025-03-21 14:40:42 +0300 |
commit | 100753a060bebb9ad33a2b56722a4e83faba3fea (patch) | |
tree | 236780e4181ccb3e8f5899765101c51c9909d7c3 /bindings/gi | |
parent | ea84d7a04d5f2eb51c06a5cafbfd877228ab8c4a (diff) |
Move bindings from bindings/gi => gi
Signed-off-by: Drew DeVault <drew@ddevault.org>
Diffstat (limited to 'bindings/gi')
-rw-r--r-- | bindings/gi/glib/types.ha | 10 | ||||
-rw-r--r-- | bindings/gi/gobject/types.ha | 13 |
2 files changed, 0 insertions, 23 deletions
diff --git a/bindings/gi/glib/types.ha b/bindings/gi/glib/types.ha deleted file mode 100644 index 2492c4e..0000000 --- a/bindings/gi/glib/types.ha +++ /dev/null @@ -1,10 +0,0 @@ -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; diff --git a/bindings/gi/gobject/types.ha b/bindings/gi/gobject/types.ha deleted file mode 100644 index 570fe30..0000000 --- a/bindings/gi/gobject/types.ha +++ /dev/null @@ -1,13 +0,0 @@ -use types::c; - -export type ValueUnion = union { - v_int: int, - v_uint: uint, - v_long: c::long, - v_ulong: c::ulong, - v_int64: i64, - v_uint64: u64, - v_float: f32, - v_double: f64, - v_pointer: *opaque, -}; |