From 60a7ec2ecf621ebb6f3376f71b27cdc61d7fc5a1 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 26 Apr 2016 04:15:33 -0400 Subject: stop tracking terminal size separately --- src/ffi.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/ffi.rs') diff --git a/src/ffi.rs b/src/ffi.rs index ceb8f35..47281ba 100644 --- a/src/ffi.rs +++ b/src/ffi.rs @@ -21,6 +21,9 @@ extern "C" { outp: *mut *mut libc::c_char, outlen: *mut libc::size_t, ); + + pub fn vt100_wrapper_rows(screen: *mut types::ScreenImpl) -> libc::c_int; + pub fn vt100_wrapper_cols(screen: *mut types::ScreenImpl) -> libc::c_int; } #[cfg(test)] -- cgit v1.2.3-54-g00ecf