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

pub enum ScreenImpl {}
pub enum CellImpl {}
pub struct ColorImpl(pub libc::uint32_t);

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