This commit is contained in:
Ian Keane 2020-02-18 14:21:14 -05:00
parent 276853ba84
commit 1cb167b597
361 changed files with 77302 additions and 4 deletions

View file

@ -0,0 +1,27 @@
(in-package :de.anvi.ncurses)
;;; variables
;;; curses global variables
;;; http://invisible-island.net/ncurses/man/curs_variables.3x.html
;;; http://h71000.www7.hp.com/doc/83final/5763/5763pro_016.html
;;; Low-level C global variables
;; int COLOR_PAIRS;
;; int COLORS;
;; int COLS;
;; int ESCDELAY;
;; int LINES;
;; int TABSIZE;
;; WINDOW * curscr;
;; WINDOW * newscr;
;; WINDOW * stdscr;
;;; Lisp read-only global constants.
(defcvar ("COLOR_PAIRS" %COLOR-PAIRS :read-only t) :int)
(defcvar ("COLORS" %COLORS :read-only t) :int)
(defcvar ("COLS" %COLS :read-only t) :int)
(defcvar ("ESCDELAY" %ESCDELAY :read-only t) :int)
(defcvar ("LINES" %LINES :read-only t) :int)
(defcvar ("TABSIZE" %TABSIZE :read-only t) :int)