From 85213a843566b82b05626efd97c48644b04935d2 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 27 Apr 2016 01:50:04 -0400 Subject: start implementing cells --- src/ffi.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ffi.rs') 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; } -- cgit v1.2.3-54-g00ecf