aboutsummaryrefslogtreecommitdiffstats
path: root/src/ffi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ffi.rs')
-rw-r--r--src/ffi.rs3
1 files changed, 3 insertions, 0 deletions
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)]