From 5ab86143c9d0b0c86411f7067cf9649f7f0d3311 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 16 Feb 2026 21:13:41 -0500 Subject: New UI stuff, not yet working. --- src/edbox.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/edbox.h (limited to 'src/edbox.h') diff --git a/src/edbox.h b/src/edbox.h new file mode 100644 index 0000000..ad70cc6 --- /dev/null +++ b/src/edbox.h @@ -0,0 +1,14 @@ +#include "addrs.h" + +/**** public API ****/ + +#define EDBOX_SIZE 160 + +void edbox_clear(void); +void edbox_show(void); +void edbox_hide(void); +void edbox_putc(char c); +void edbox_keystroke(void); + +/* called when the user presses Enter */ +extern void (*edbox_callback)(void); -- cgit v1.2.3