Tmux etc
This commit is contained in:
parent
276853ba84
commit
1cb167b597
361 changed files with 77302 additions and 4 deletions
|
|
@ -0,0 +1,23 @@
|
|||
(in-package :de.anvi.ncurses)
|
||||
|
||||
;;; refresh
|
||||
;;; refresh curses windows and lines
|
||||
;;; http://www.manpagez.com/man/3/curs_refresh/
|
||||
|
||||
;;; C prototypes
|
||||
|
||||
;; int refresh(void);
|
||||
;; int wrefresh(WINDOW *win);
|
||||
;; int wnoutrefresh(WINDOW *win);
|
||||
;; int doupdate(void);
|
||||
;; int redrawwin(WINDOW *win);
|
||||
;; int wredrawln(WINDOW *win, int beg_line, int num_lines);
|
||||
|
||||
;;; Low-level CFFI wrappers
|
||||
|
||||
(defcfun ("refresh" %refresh) :int)
|
||||
(defcfun ("wrefresh" %wrefresh) :int (win window))
|
||||
(defcfun ("wnoutrefresh" %wnoutrefresh) :int (win window))
|
||||
(defcfun ("doupdate" %doupdate) :int)
|
||||
(defcfun ("redrawwin" %redrawwin) :int (win window))
|
||||
(defcfun ("wredrawln" %wredrawln) :int (win window) (beg-line :int) (num-lines :int))
|
||||
Loading…
Add table
Add a link
Reference in a new issue