X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Farrays.lisp;fp=tests%2Farrays.lisp;h=1bc438f623cb6ba2aa853bf03a50d95a58b95dcc;hb=603822b8bfea96aa4ee6bccec88fb372d84dcc30;hp=75ff5a7a69c91f6d47fbbde782a2c80c27e26eeb;hpb=77378d36f07fe1f11893444217716b01628a329f;p=uffi.git diff --git a/tests/arrays.lisp b/tests/arrays.lisp index 75ff5a7..1bc438f 100644 --- a/tests/arrays.lisp +++ b/tests/arrays.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: arrays.lisp,v 1.1 2002/09/30 10:02:36 kevin Exp $ +;;;; $Id: arrays.lisp,v 1.2 2002/12/03 06:58:39 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -21,6 +21,8 @@ (uffi:def-constant +column-length+ 10) (uffi:def-constant +row-length+ 10) +(uffi:def-foreign-type long-ptr '(* :long)) + (defun test-array-1d () "Tests vector" (let ((a (uffi:allocate-foreign-object :long +column-length+))) @@ -33,7 +35,7 @@ (defun test-array-2d () "Tests 2d array" - (let ((a (uffi:allocate-foreign-object '(* :long) +row-length+))) + (let ((a (uffi:allocate-foreign-object 'long-ptr +row-length+))) (dotimes (r +row-length+) (declare (fixnum r)) (setf (uffi:deref-array a '(:array (* :long)) r)