r2385: *** empty log message ***
[uffi.git] / src / objects.cl
index 014fe9d2fae243f97d4d2b63c94a29ea583eba0c..7cd3cb169ae03fda13b445282e9befa8671b8a85 100644 (file)
@@ -1,4 +1,4 @@
-;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: UFFI -*-
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: objects.cl,v 1.15 2002/03/23 16:32:39 kevin Exp $
+;;;; $Id: objects.cl,v 1.22 2002/08/23 15:28:52 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -27,14 +27,14 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated."
        #+cmu
        `(alien:make-alien ,(convert-from-uffi-type (eval type) :allocation))
        #+lispworks
-       `(fli:allocate-foreign-object :type ,(convert-from-uffi-type type :allocate))
+       `(fli:allocate-foreign-object :type ',(convert-from-uffi-type type :allocate))
        #+allegro
        `(ff:allocate-fobject ,(convert-from-uffi-type type :allocate) :c))
       (progn
        #+cmu
        `(alien:make-alien ,(convert-from-uffi-type (eval type) :allocation) ,size)
        #+lispworks
-       `(fli:allocate-foreign-object :type ,(convert-from-uffi-type type :allocate) :nelems ,size)
+       `(fli:allocate-foreign-object :type ',(convert-from-uffi-type type :allocate) :nelems ,size)
        #+allegro
        `(ff:allocate-fobject '(:array ,(convert-from-uffi-type (eval type) :allocate) ,(eval size)) :c)
       )
@@ -55,6 +55,13 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated."
   #+cmu   `(alien:null-alien ,obj)
   )
 
+(defmacro size-of-foreign-type (type)
+  #+lispworks `(fli:size-of ,type)
+  #+allegro `(ff:sizeof-fobject ,type)
+  #+cmu   `(alien:alien-size ,type)
+  #+clisp   `(values (ffi:size-of ,type))
+  )
+
 
 (defmacro make-null-pointer (type)
   #+(or allegro cmu) (declare (ignore type))
@@ -76,7 +83,7 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated."
   #+(or cmu lispworks) (declare (ignore type))
   #+cmu  `(alien:deref ,ptr)
   #+lispworks `(fli:dereference ,ptr)
-  #+allegro `(ff:fslot-value-typed ,type :c ,ptr)
+  #+allegro `(ff:fslot-value-typed ,(convert-from-uffi-type type :deref) :c ,ptr)
 )
 
 #+lispworks ;; with LW, deref is a character