diff options
author | Malfurious <m@lfurio.us> | 2023-07-02 04:22:41 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-07-02 04:22:41 -0400 |
commit | 7e89874f23e0423a4c9476cba8b566809685cfb9 (patch) | |
tree | 5f23041b4499640aab168a2f59b9489bf3546622 /curshelpers.h | |
parent | 2c714c2d0066eafa066b96e5e3e48fbee27c4e1a (diff) | |
download | misplays-7e89874f23e0423a4c9476cba8b566809685cfb9.tar.gz misplays-7e89874f23e0423a4c9476cba8b566809685cfb9.zip |
Add convenience ncurses functions
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'curshelpers.h')
-rw-r--r-- | curshelpers.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/curshelpers.h b/curshelpers.h new file mode 100644 index 0000000..d8bda0d --- /dev/null +++ b/curshelpers.h @@ -0,0 +1,12 @@ +#pragma once + +#include <ncurses.h> +#include <panel.h> + +extern void cursinit(void); +extern void cursupdate(void); + +extern PANEL *newpan(int h, int w, int y, int x); +extern void delpan(PANEL *pan); +extern void reset_panel(PANEL *pan, int h, int w, int y, int x); +extern int pprintw(PANEL *pan, const char *fmt, ...); |