aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.rs
blob: a5ac590737df52400e566d7ff2af94b965e3b6ae (plain) (blame)
1
2
3
4
5
6
7
8
9
use libc;

pub enum ScreenImpl {}

#[repr(C)]
pub struct Loc {
    pub row: libc::c_int,
    pub col: libc::c_int,
}