use std::os::raw::c_char;
pub const LINK_TARGET_VERSION: &str = "12.0.0";
#[inline(always)]
pub fn pa_get_headers_version() -> &'static str {
LINK_TARGET_VERSION
}
pub const PA_API_VERSION: u8 = 12;
pub const PA_PROTOCOL_VERSION: u16 = 32;
pub const PA_MAJOR: u8 = 12;
pub const PA_MINOR: u8 = 0;
pub const PA_MICRO: u8 = 0;
#[inline(always)]
pub fn pa_check_version(major: u8, minor: u8, micro: u8) -> bool {
((PA_MAJOR > major) ||
(PA_MAJOR == major && PA_MINOR > minor) ||
(PA_MAJOR == major && PA_MINOR == minor && PA_MICRO >= micro))
}
#[link(name="pulse")]
extern "C" {
pub fn pa_get_library_version() -> *const c_char;
}