Tmux etc
This commit is contained in:
parent
276853ba84
commit
1cb167b597
361 changed files with 77302 additions and 4 deletions
|
|
@ -0,0 +1,28 @@
|
|||
(in-package :de.anvi.ncurses)
|
||||
|
||||
;;; legacy
|
||||
;;; get curses cursor and window coordinates, attributes
|
||||
;;; http://invisible-island.net/ncurses/man/curs_legacy.3x.html
|
||||
|
||||
;;; C prototypes
|
||||
|
||||
;; int getattrs(WINDOW *win);
|
||||
;; int getbegx(WINDOW *win);
|
||||
;; int getbegy(WINDOW *win);
|
||||
;; int getcurx(WINDOW *win);
|
||||
;; int getcury(WINDOW *win);
|
||||
;; int getmaxx(WINDOW *win);
|
||||
;; int getmaxy(WINDOW *win);
|
||||
;; int getparx(WINDOW *win);
|
||||
;; int getpary(WINDOW *win);
|
||||
|
||||
;;; Low-level CFFI wrappers
|
||||
|
||||
(defcfun ("getbegx" %getbegx) :int (win window))
|
||||
(defcfun ("getbegy" %getbegy) :int (win window))
|
||||
(defcfun ("getcurx" %getcurx) :int (win window))
|
||||
(defcfun ("getcury" %getcury) :int (win window))
|
||||
(defcfun ("getmaxx" %getmaxx) :int (win window))
|
||||
(defcfun ("getmaxy" %getmaxy) :int (win window))
|
||||
(defcfun ("getparx" %getparx) :int (win window))
|
||||
(defcfun ("getpary" %getpary) :int (win window))
|
||||
Loading…
Add table
Add a link
Reference in a new issue