aboutsummaryrefslogtreecommitdiffstats
path: root/src/ffi.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-04-27 02:51:35 -0400
committerJesse Luehrs <doy@tozt.net>2016-04-27 03:03:46 -0400
commitea0444f2bb0ad94431a597e29f15d61cfa237508 (patch)
tree6a12efd1cc30a7d936306bc40a9860a22f047fcb /src/ffi.rs
parentdf328c13903d5a0e595d27b14f79e2a61f66f8fc (diff)
downloadvt100-rust-ea0444f2bb0ad94431a597e29f15d61cfa237508.tar.gz
vt100-rust-ea0444f2bb0ad94431a597e29f15d61cfa237508.zip
implement the rest of the cell attrs
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)]