use core::ffi::*;
use crate::*;
#[inline]
pub extern "C-unwind" fn CVGetCurrentHostTime() -> u64 {
extern "C-unwind" {
fn CVGetCurrentHostTime() -> u64;
}
unsafe { CVGetCurrentHostTime() }
}
#[inline]
pub extern "C-unwind" fn CVGetHostClockFrequency() -> c_double {
extern "C-unwind" {
fn CVGetHostClockFrequency() -> c_double;
}
unsafe { CVGetHostClockFrequency() }
}
#[inline]
pub extern "C-unwind" fn CVGetHostClockMinimumTimeDelta() -> u32 {
extern "C-unwind" {
fn CVGetHostClockMinimumTimeDelta() -> u32;
}
unsafe { CVGetHostClockMinimumTimeDelta() }
}