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.
#[repr(C)]
pub struct SecondsTime {
seconds: u64,
milliseconds: u64,
/// Seconds
pub seconds: u64,
/// Milliseconds
pub milliseconds: u64,
}
extern "C" {