aboutsummaryrefslogtreecommitdiffstats
path: root/src/ffi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ffi.rs')
-rw-r--r--src/ffi.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ffi.rs b/src/ffi.rs
index e498361..550e3b0 100644
--- a/src/ffi.rs
+++ b/src/ffi.rs
@@ -40,6 +40,11 @@ extern "C" {
pub fn vt100_wrapper_rows(screen: *mut types::ScreenImpl) -> libc::c_int;
pub fn vt100_wrapper_cols(screen: *mut types::ScreenImpl) -> libc::c_int;
+ pub fn vt100_wrapper_cell_is_wide(cell: *mut types::CellImpl) -> libc::c_int;
+ pub fn vt100_wrapper_cell_bold(cell: *mut types::CellImpl) -> libc::c_int;
+ pub fn vt100_wrapper_cell_italic(cell: *mut types::CellImpl) -> libc::c_int;
+ pub fn vt100_wrapper_cell_underline(cell: *mut types::CellImpl) -> libc::c_int;
+ pub fn vt100_wrapper_cell_inverse(cell: *mut types::CellImpl) -> libc::c_int;
}
#[cfg(test)]