X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=examples%2Farrays.lisp;h=8a5831218293fa01245d30b1852c7fe215277db2;hb=13635ed2b774e454b90823e085d84aa968da9eb4;hp=75ff5a7a69c91f6d47fbbde782a2c80c27e26eeb;hpb=a95b9a217335917d96b8c0cced4f49c3e4846115;p=uffi.git diff --git a/examples/arrays.lisp b/examples/arrays.lisp index 75ff5a7..8a58312 100644 --- a/examples/arrays.lisp +++ b/examples/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$ ;;;; ;;;; 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)