Changeset main,15
- Timestamp:
- 10/30/2007 06:50:12 PM (19 years ago)
- branch-nick:
- tui
- revision id:
- dsowen@fugue88.ws-20071030185012-vvffnzgd6b5dnmjj
- Location:
- main
- Files:
-
- 2 edited
-
cdk.lisp (modified) (2 diffs)
-
input.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
main/cdk.lisp
r13 r15 89 89 (ch chtype)) 90 90 91 (defcfun "wbkgrnd" :int 92 (window :pointer) 93 (wch :pointer)) 94 91 95 (defcfun ("werase" c-erase-window) :int 92 96 (window :pointer)) 97 98 (defcfun "getcury" :int 99 (window :pointer)) 100 101 (defcfun "getcurx" :int 102 (window :pointer)) 103 104 (defcfun "getmaxy" :int 105 (window :pointer)) 106 107 (defcfun "getmaxx" :int 108 (window :pointer)) 109 110 (defcfun "wmove" :int 111 (window :pointer) 112 (y :int) 113 (x :int)) 93 114 94 115 (defcfun ("mvwadd_wch" c-move-and-add-char) :int … … 118 139 (:h-line #\q) 119 140 (:v-line #\x) 120 (:plus #\n))))) 141 (:plus #\n) 142 (:solid #\0))))) 121 143 (inc-pointer nc-wacs (* (foreign-type-size 'cchar_t) code)))) 122 144 -
main/input.lisp
r14 r15 1 1 ;;;; TODO: Change all the keycode symbols to an enumeration so that 2 ;;;; Lisp will de etect typos, &c.2 ;;;; Lisp will detect typos, &c. 3 3 4 4 (defpackage #:input 5 5 (:use #:cl #:cffi) 6 (:export ))6 (:export #:%wget-wch)) 7 7 8 8 (in-package #:input)
Note: See TracChangeset
for help on using the changeset viewer.
