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

pub enum ScreenImpl {}
pub enum CellImpl {}

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