r11087: add cygwin support
[uffi.git] / examples / arrays.lisp
index 75ff5a7a69c91f6d47fbbde782a2c80c27e26eeb..0239e70998b49cdbfa3759d87db5bd7190adc6ab 100644 (file)
@@ -7,13 +7,10 @@
 ;;;; 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
+;;;; This file, part of UFFI, is Copyright (c) 2002-2005 by Kevin M. Rosenberg
 ;;;;
-;;;; UFFI users are granted the rights to distribute and use this software
-;;;; as governed by the terms of the Lisp Lesser GNU Public License
-;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 (in-package :cl-user)
@@ -21,6 +18,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 +32,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)