;;;; libbrlapi - A library providing access to braille terminals for applications. ;;;; ;;;; Copyright (C) 2006-2021 by Mario Lang ;;;; ;;;; libbrlapi comes with ABSOLUTELY NO WARRANTY. ;;;; ;;;; This is free software, placed under the terms of the ;;;; GNU Lesser General Public License, as published by the Free Software ;;;; Foundation; either version 2.1 of the License, or (at your option) any ;;;; later version. Please see the file LICENSE-LGPL for details. ;;;; ;;;; Web Page: http://brltty.app/ ;;;; ;;;; This software is maintained by Dave Mielke . (eval-when (:compile-toplevel) (declaim (optimize (safety 3) (debug 3)))) ;;;; * Package definition (defpackage :brlapi (:use :common-lisp :cffi) (:export #:open-connection #:close-connection #:is-connected #:property-list #:print-object #:library-version #:driver-name #:model-identifier #:display-size #:enter-tty-mode #:leave-tty-mode #:write-text #:write-dots #:write-region #:read-key read-key-with-timeout #:expand-key-code #:describe-key-code #:error-message)) (in-package :brlapi)