Changeset tag,last-working,5 for tag/last-working/curses.lisp
- Timestamp:
- 09/27/2007 10:46:25 PM (19 years ago)
- branch-nick:
- tui
- revision id:
- dsowen@fugue88.ws-20070927224625-s9k87snjmjfo33lv
- File:
-
- 1 edited
-
tag/last-working/curses.lisp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tag/last-working/curses.lisp
r4 r5 14 14 15 15 (defcfun initscr window*) 16 (defcfun clear :int) 16 17 (defcfun endwin :int) 17 18 (defcfun refresh :int) … … 22 23 (defcfun start-color :int) 23 24 24 (defcvar stdscr :pointer :read-only t) 25 (defcfun mvwaddstr :int (win :pointer) (y :int) (x :int) (str :string)) 26 27 (defcvar *stdscr* :pointer :read-only t) 25 28 26 29 … … 58 61 (defcdef req-left-char) 59 62 (defcdef req-right-char) 63 (defcdef o-active) 64 (defcdef o-autoskip) 60 65 61 66 (defcfun form2-create :int) 62 67 (defcfun form2-add-field :int (form :int) (row :int) (col :int) (width :int) 63 (height :int) (data-height :int) )68 (height :int) (data-height :int) (opts-mask :int)) 64 69 (defcfun form2-destroy :int (form :int)) 65 70 (defcfun form2-post :int (form :int)) … … 68 73 (defcfun form2-field-len :int (form :int) (i :int)) 69 74 (defcfun form2-copy-field :int (form :int) (i :int) (buff :pointer) (len :int)) 75 (defcfun form2-set-field :int (form :int) (i :int) (buff :string)) 70 76 71 77 (defun form2-get-value (form i) … … 81 87 (initscr) 82 88 (start-color) 83 (keypad stdscr1)89 (keypad *stdscr* 1) 84 90 (cbreak) 85 (noecho)) 91 (noecho) 92 (clear)) 86 93 87 94 (defmacro ncase (keyform &rest clauses)
Note: See TracChangeset
for help on using the changeset viewer.
