use crate::c_api::ffi;
mod methods;
pub type NcReader = ffi::ncreader;
pub type NcReaderOptions = ffi::ncreader_options;
impl NcReaderOptions {
pub const CURSOR: u32 = c_api::NCREADER_OPTION_CURSOR;
pub const HORSCROLL: u32 = c_api::NCREADER_OPTION_HORSCROLL;
pub const NOCMDKEYS: u32 = c_api::NCREADER_OPTION_NOCMDKEYS;
pub const VERSCROLL: u32 = c_api::NCREADER_OPTION_VERSCROLL;
}
pub(crate) mod c_api {
use super::ffi;
pub const NCREADER_OPTION_CURSOR: u32 = ffi::NCREADER_OPTION_CURSOR;
pub const NCREADER_OPTION_HORSCROLL: u32 = ffi::NCREADER_OPTION_HORSCROLL;
pub const NCREADER_OPTION_NOCMDKEYS: u32 = ffi::NCREADER_OPTION_NOCMDKEYS;
pub const NCREADER_OPTION_VERSCROLL: u32 = ffi::NCREADER_OPTION_VERSCROLL;
}