use oboe_sys as ffi;
use std::str::from_utf8_unchecked;
pub struct Version;
impl Version {
pub const MAJOR: u8 = ffi::oboe_Version_Major;
pub const MINOR: u8 = ffi::oboe_Version_Minor;
pub const PATCH: u16 = ffi::oboe_Version_Patch;
pub const NUMBER: u32 = ffi::oboe_Version_Number;
pub fn text() -> &'static str {
unsafe { from_utf8_unchecked(ffi::oboe_Version_Text.as_ref()) }
}
}