aboutsummaryrefslogtreecommitdiffstats
path: root/src/ffi.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-04-27 23:36:23 -0400
committerJesse Luehrs <doy@tozt.net>2016-04-27 23:36:23 -0400
commit0d34c6cc4ec8d710550c2a8bcf491be4face7280 (patch)
treef13b2d15a09c62b503781d18c41371e6f7e5deb4 /src/ffi.rs
parent61df526acf4687b6b393b1e6c435e613a5dc7db3 (diff)
downloadvt100-rust-0d34c6cc4ec8d710550c2a8bcf491be4face7280.tar.gz
vt100-rust-0d34c6cc4ec8d710550c2a8bcf491be4face7280.zip
a few more accessors
Diffstat (limited to 'src/ffi.rs')
-rw-r--r--src/ffi.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ffi.rs b/src/ffi.rs
index a939c0d..80a2d08 100644
--- a/src/ffi.rs
+++ b/src/ffi.rs
@@ -46,6 +46,16 @@ extern "C" {
pub fn vt100_wrapper_screen_mouse_reporting_button_motion(screen: *mut types::ScreenImpl) -> libc::c_int;
pub fn vt100_wrapper_screen_mouse_reporting_sgr_mode(screen: *mut types::ScreenImpl) -> libc::c_int;
pub fn vt100_wrapper_screen_bracketed_paste(screen: *mut types::ScreenImpl) -> libc::c_int;
+ pub fn vt100_wrapper_screen_visual_bell(screen: *mut types::ScreenImpl) -> libc::c_int;
+ 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) -> libc::c_int;
+ pub fn vt100_wrapper_screen_clear_audible_bell(screen: *mut types::ScreenImpl) -> libc::c_int;
+ pub fn vt100_wrapper_screen_clear_update_title(screen: *mut types::ScreenImpl) -> libc::c_int;
+ pub fn vt100_wrapper_screen_clear_update_icon_name(screen: *mut types::ScreenImpl) -> libc::c_int;
+ pub fn vt100_wrapper_screen_clear_dirty(screen: *mut types::ScreenImpl) -> libc::c_int;
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;