Changeset tag,last-working,15


Ignore:
Timestamp:
10/30/2007 06:50:12 PM (19 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
tui
revision id:
dsowen@fugue88.ws-20071030185012-vvffnzgd6b5dnmjj
Message:

Minor edits.

Location:
tag/last-working
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tag/last-working/cdk.lisp

    r13 r15  
    8989  (ch chtype))
    9090
     91(defcfun "wbkgrnd" :int
     92  (window :pointer)
     93  (wch :pointer))
     94
    9195(defcfun ("werase" c-erase-window) :int
    9296  (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))
    93114
    94115(defcfun ("mvwadd_wch" c-move-and-add-char) :int
     
    118139                           (:h-line #\q)
    119140                           (:v-line #\x)
    120                            (:plus #\n)))))
     141                           (:plus #\n)
     142                           (:solid #\0)))))
    121143    (inc-pointer nc-wacs (* (foreign-type-size 'cchar_t) code))))
    122144
  • tag/last-working/input.lisp

    r14 r15  
    11;;;; TODO: Change all the keycode symbols to an enumeration so that
    2 ;;;; Lisp will deetect typos, &c.
     2;;;; Lisp will detect typos, &c.
    33
    44(defpackage #:input
    55  (:use #:cl #:cffi)
    6   (:export))
     6  (:export #:%wget-wch))
    77
    88(in-package #:input)
Note: See TracChangeset for help on using the changeset viewer.