#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(dead_code)]
#![allow(clippy::all)]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
#[cfg(pappl_1_4)]
pub const HAS_CREATE_PRINTERS: bool = true;
#[cfg(not(pappl_1_4))]
pub const HAS_CREATE_PRINTERS: bool = false;
#[allow(unused_variables)]
pub unsafe fn try_system_create_printers(
system: *mut pappl_system_t,
types: pappl_devtype_t,
cb: pappl_pr_create_cb_t,
data: *mut std::os::raw::c_void,
) -> bool {
#[cfg(pappl_1_4)]
{
papplSystemCreatePrinters(system, types, cb, data);
true
}
#[cfg(not(pappl_1_4))]
{
false
}
}