Skip to content

Commit

Permalink
Add support for libc::time_t and related types
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Jul 10, 2024
1 parent d7c0763 commit ccd7413
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/library.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,13 @@ const BASIC: &[(&str, Basic)] = &[
("GType", Basic::Type),
("gintptr", Basic::IntPtr),
("guintptr", Basic::UIntPtr),
("time_t", Basic::TimeT),
("off_t", Basic::OffT),
("dev_t", Basic::DevT),
("gid_t", Basic::GidT),
("pid_t", Basic::PidT),
("socklen_t", Basic::SockLenT),
("uid_t", Basic::UidT),
// TODO: this is temporary name, change it when type added to GLib
("os_string", Basic::OsString),
("bool", Basic::Bool),
Expand Down

0 comments on commit ccd7413

Please sign in to comment.