pull/1/head
Able 2022-02-10 23:57:13 -06:00
parent 5c5bbfb467
commit a89b8fc701
Signed by: able
GPG Key ID: D164AF5F5700BE51
1 changed files with 4 additions and 2 deletions

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" {