X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=uffi%2Fclsql-uffi.lisp;h=7bc3a94c55678c8d2a7af65f579f493c429bd1f9;hp=a6d4af4da61c779dd82932474cc4a374a0d575b6;hb=f0b691b8b5c1222c339dbef3b27dd457da615a65;hpb=fce7c4f2a188851c40844cc1b7cface0bf099c6f diff --git a/uffi/clsql-uffi.lisp b/uffi/clsql-uffi.lisp index a6d4af4..7bc3a94 100644 --- a/uffi/clsql-uffi.lisp +++ b/uffi/clsql-uffi.lisp @@ -7,7 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: clsql-uffi.lisp,v 1.22 2003/05/17 07:45:05 kevin Exp $ +;;;; $Id: clsql-uffi.lisp,v 1.23 2003/05/17 07:50:55 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -121,9 +121,9 @@ (make-64-bit-integer high32 low32))))) (t ;; Choose optimized routine - #-(or cmu sbcl scl) + #-(or cmu sbcl lispworks scl) (native-to-string char-ptr) - #+(or cmu sbcl scl) + #+(or cmu sbcl lispworks scl) (uffi:convert-from-foreign-string char-ptr))))))) @@ -143,7 +143,7 @@ ((= i len)) (declare (fixnum i)) (setf (schar str i) - (code-char (uffi:deref-array s :unsigned-char i))) + (code-char (uffi:deref-array s '(:array :unsigned-char) i))) (incf i)) str)) @@ -159,7 +159,7 @@ ((= i len)) (declare (fixnum i)) (setf (schar str i) - (code-char (uffi:deref-array s :unsigned-char i))) + (code-char (uffi:deref-array s '(:array :unsigned-char) i))) (incf i)) str)) @@ -176,13 +176,13 @@ ((= i len4)) (declare (fixnum i)) (setf (aref (the (simple-array (signed-byte 32) (*)) str) i) - (uffi:deref-array s :int i)) + (uffi:deref-array s '(:array :int) i)) (incf i)) (do ((i (* 4 len4))) ((= i len)) (declare (fixnum i)) (setf (aref (the (simple-array (signed-byte 8) (*)) str) i) - (uffi:deref-array s :unsigned-char i)) + (uffi:deref-array s '(:array :unsigned-char) i)) (incf i)) str))