aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordam <dam@gudinoff>2023-04-16 17:39:48 +0100
committerdam <dam@gudinoff>2023-04-16 17:39:48 +0100
commitf0d4c9a424c2346da6209fad19dde88905cb012a (patch)
tree0c532cedf646980a7215f426b364435e465e1fab
parent7ad87637467a4757accae3fd4ad09c7ddb0b289e (diff)
downloadtask-time-tracker-f0d4c9a424c2346da6209fad19dde88905cb012a.tar.zst
task-time-tracker-f0d4c9a424c2346da6209fad19dde88905cb012a.zip
Cleanup curses bindings.
-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
-*/
};