aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--curses.jai14
1 files changed, 0 insertions, 14 deletions
diff --git a/curses.jai b/curses.jai
index 317d09b..1f62262 100644
--- a/curses.jai
+++ b/curses.jai
@@ -6,11 +6,6 @@ ldat :: struct {
oldindex :s16; /* index of the line at last update */
};
-// TODO This also works...
-WINDOWx :: struct {
- data : [88] u8;
-}
-
WINDOW :: struct {
_cury, _curx : s16; /* current cursor position */
@@ -57,15 +52,6 @@ WINDOW :: struct {
_pad :pdat;
_yoffset :s16; /* real begy is _begy + _yoffset */
-
-/*
-#if NCURSES_WIDECHAR
- cchar_t _bkgrnd;
-#if 1
- int _color;
-#endif
-#endif
-*/
};