From bdd7f9422a58231bfda1817d022e5f6a90ce1336 Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 14 Mar 2020 17:52:34 -0400 Subject: [PATCH] python: add ncdirect_cursor_*() --- python/src/notcurses/build_notcurses.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/src/notcurses/build_notcurses.py b/python/src/notcurses/build_notcurses.py index 3222953e8..ea128fff1 100644 --- a/python/src/notcurses/build_notcurses.py +++ b/python/src/notcurses/build_notcurses.py @@ -255,6 +255,8 @@ int ncdirect_stop(struct ncdirect* n); int ncdirect_dim_x(const struct ncdirect* nc); int ncdirect_dim_y(const struct ncdirect* nc); int ncdirect_cursor_move_yx(struct ncdirect* n, int y, int x); +int ncdirect_cursor_enable(struct ncdirect* nc); +int ncdirect_cursor_disable(struct ncdirect* nc); struct ncvisual* ncplane_visual_open(struct ncplane* nc, const char* file, int* averr); typedef enum { NCSCALE_NONE,