1#![cfg(target_os = "linux")]
2#![doc = include_str!("../README.md")]
3#![doc(html_root_url = "https://docs.rs/smartcols-sys/0.1.3")]
4#![allow(non_camel_case_types)]
5
6#[cfg(test)]
7mod tests;
8
9use std::os::raw::c_uint;
10
11pub const SCOLS_DEBUG_HELP: c_uint = 1 << 0;
12pub const SCOLS_DEBUG_INIT: c_uint = 1 << 1;
13pub const SCOLS_DEBUG_CELL: c_uint = 1 << 2;
14pub const SCOLS_DEBUG_LINE: c_uint = 1 << 3;
15pub const SCOLS_DEBUG_TAB: c_uint = 1 << 4;
16pub const SCOLS_DEBUG_COL: c_uint = 1 << 5;
17pub const SCOLS_DEBUG_BUFF: c_uint = 1 << 6;
18pub const SCOLS_DEBUG_GROUP: c_uint = 1 << 7;
19pub const SCOLS_DEBUG_FLTR: c_uint = 1 << 8;
20pub const SCOLS_DEBUG_FPARAM: c_uint = 1 << 9;
21pub const SCOLS_DEBUG_ALL: c_uint = 0xFFFF;
22
23include!(concat!(env!("OUT_DIR"), "/smartcols-sys.rs"));