aboutsummaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/cell.rs b/src/cell.rs
index ef12756..e78f16c 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -8,17 +8,10 @@ use types;
pub struct Cell(*mut types::CellImpl);
#[repr(C)]
-struct CellAttrs {
- fgcolor: types::ColorImpl,
- bgcolor: types::ColorImpl,
- attrs: libc::c_uchar,
-}
-
-#[repr(C)]
struct CellPrefix {
pub contents: [libc::c_char; 8],
pub len: libc::size_t,
- pub attrs: CellAttrs,
+ pub attrs: types::CellAttrs,
}
impl Cell {