aboutsummaryrefslogtreecommitdiffstats
path: root/src/ffi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ffi.rs')
-rw-r--r--src/ffi.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ffi.rs b/src/ffi.rs
index 1b984b5..e498361 100644
--- a/src/ffi.rs
+++ b/src/ffi.rs
@@ -32,6 +32,12 @@ extern "C" {
rows: libc::c_int,
);
+ pub fn vt100_screen_cell_at(
+ screen: *mut types::ScreenImpl,
+ row: libc::c_int,
+ col: libc::c_int,
+ ) -> *mut types::CellImpl;
+
pub fn vt100_wrapper_rows(screen: *mut types::ScreenImpl) -> libc::c_int;
pub fn vt100_wrapper_cols(screen: *mut types::ScreenImpl) -> libc::c_int;
}