r5003: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 17 May 2003 07:50:55 +0000 (07:50 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 17 May 2003 07:50:55 +0000 (07:50 +0000)
uffi/clsql-uffi.lisp

index a6d4af4da61c779dd82932474cc4a374a0d575b6..7bc3a94c55678c8d2a7af65f579f493c429bd1f9 100644 (file)
@@ -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
 ;;;;
                  (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)))))))
   
 
        ((= 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))
 
        ((= 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))
 
        ((= 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))