From 100753a060bebb9ad33a2b56722a4e83faba3fea Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 21 Mar 2025 10:40:06 +0100 Subject: Move bindings from bindings/gi => gi Signed-off-by: Drew DeVault --- bindings/gi/glib/types.ha | 10 ---------- bindings/gi/gobject/types.ha | 13 ------------- bindings/types/libc/types.ha | 32 -------------------------------- 3 files changed, 55 deletions(-) delete mode 100644 bindings/gi/glib/types.ha delete mode 100644 bindings/gi/gobject/types.ha delete mode 100644 bindings/types/libc/types.ha (limited to 'bindings') 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, -}; diff --git a/bindings/types/libc/types.ha b/bindings/types/libc/types.ha deleted file mode 100644 index 94959b7..0000000 --- a/bindings/types/libc/types.ha +++ /dev/null @@ -1,32 +0,0 @@ -use types::c; - -export type time_t = i64; - -export type utimbuf = struct { - actime: time_t, - modtime: time_t, -}; - -export type tm = struct { - tm_sec: int, - tm_min: int, - tm_hour: int, - tm_mday: int, - tm_mon: int, - tm_year: int, - tm_wday: int, - tm_yday: int, - tm_isdst: int, -}; - -export type FILE = opaque; - -export type passwd = struct { - pw_name: *c::char, - pw_passwd: *c::char, - pw_uid: uint, - pw_gid: uint, - pw_gecos: *c::char, - pw_dir: *c::char, - pw_shell: *c::char, -}; -- cgit 1.3.0-6-gf8a5