This commit is contained in:
Able 2022-02-10 23:57:13 -06:00
parent 825baedbe0
commit 7e7969253e

View file

@ -3,8 +3,10 @@
/// Seconds and milliseconds since the Unix epoch. /// Seconds and milliseconds since the Unix epoch.
#[repr(C)] #[repr(C)]
pub struct SecondsTime { pub struct SecondsTime {
seconds: u64, /// Seconds
milliseconds: u64, pub seconds: u64,
/// Milliseconds
pub milliseconds: u64,
} }
extern "C" { extern "C" {