aboutsummaryrefslogtreecommitdiffstats
path: root/src/ffi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ffi.rs')
-rw-r--r--src/ffi.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ffi.rs b/src/ffi.rs
index 284a98c..7715acd 100644
--- a/src/ffi.rs
+++ b/src/ffi.rs
@@ -59,17 +59,17 @@ extern "C" {
pub fn vt100_wrapper_screen_audible_bell(screen: *mut types::ScreenImpl) -> libc::c_int;
pub fn vt100_wrapper_screen_update_title(screen: *mut types::ScreenImpl) -> libc::c_int;
pub fn vt100_wrapper_screen_update_icon_name(screen: *mut types::ScreenImpl) -> libc::c_int;
- pub fn vt100_wrapper_screen_dirty(screen: *mut types::ScreenImpl) -> libc::c_int;
pub fn vt100_wrapper_screen_clear_visual_bell(screen: *mut types::ScreenImpl);
pub fn vt100_wrapper_screen_clear_audible_bell(screen: *mut types::ScreenImpl);
pub fn vt100_wrapper_screen_clear_update_title(screen: *mut types::ScreenImpl);
pub fn vt100_wrapper_screen_clear_update_icon_name(screen: *mut types::ScreenImpl);
- pub fn vt100_wrapper_screen_clear_dirty(screen: *mut types::ScreenImpl);
pub fn vt100_wrapper_cell_is_wide(cell: *mut types::CellImpl) -> libc::c_int;
pub fn vt100_wrapper_cell_attrs_bold(cell: *mut types::CellAttrs) -> libc::c_int;
pub fn vt100_wrapper_cell_attrs_italic(cell: *mut types::CellAttrs) -> libc::c_int;
pub fn vt100_wrapper_cell_attrs_underline(cell: *mut types::CellAttrs) -> libc::c_int;
pub fn vt100_wrapper_cell_attrs_inverse(cell: *mut types::CellAttrs) -> libc::c_int;
+ pub fn vt100_wrapper_cell_was_drawn(cell: *mut types::CellImpl) -> libc::c_int;
+ pub fn vt100_wrapper_cell_set_was_drawn(cell: *mut types::CellImpl);
}
#[cfg(test)]