r2185: *** empty log message ***
[uffi.git] / src / objects.cl
index c71aa48598f914c0e8c81c88a045f23803cc1ddb..fd5ac67d55c6497deb05f29adef20c7d52747748 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: objects.cl,v 1.18 2002/06/27 03:42:40 kevin Exp $
+;;;; $Id: objects.cl,v 1.19 2002/06/28 21:08:00 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -55,6 +55,12 @@ 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)
+  )
+
 
 (defmacro make-null-pointer (type)
   #+(or allegro cmu) (declare (ignore type))