X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fobjects.lisp;h=f154990cef415047cc7aadb1cf46aed85b0d5961;hb=52aa6156ffd6ff12b904f04d25ab3d4ee4126015;hp=dc382f52627ff41022aa43ce34a15bcfd030dd44;hpb=ebedde4e67b858b1f65c5eb4dc7bc45978ed1e40;p=uffi.git diff --git a/src/objects.lisp b/src/objects.lisp index dc382f5..f154990 100644 --- a/src/objects.lisp +++ b/src/objects.lisp @@ -92,6 +92,16 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated." #+mcl `(ccl:%null-ptr) ) +(defmacro make-pointer (addr type) + #+(or allegro mcl) (declare (ignore type)) + #+(or cmu scl) `(alien:sap-alien (system:int-sap ,addr) (* ,(convert-from-uffi-type (eval type) :type))) + #+sbcl `(sb-alien:sap-alien (sb-sys:int-sap ,addr) (* ,(convert-from-uffi-type (eval type) :type))) + #+lispworks `(fli:make-pointer :address ,addr :type (quote ,(convert-from-uffi-type (eval type) :type))) + #+allegro addr + #+mcl `(ccl:%int-to-ptr ,addr) + ) + + (defmacro char-array-to-pointer (obj) #+(or cmu scl) `(alien:cast ,obj (* (alien:unsigned 8))) #+sbcl `(sb-alien:cast ,obj (* (sb-alien:unsigned 8))) @@ -216,7 +226,7 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated." ,pointer (* ,(convert-from-uffi-type (eval type) :type))))) ,@body)) -#+allegro +#+(or allegro openmcl) (defmacro with-cast-pointer ((binding-name pointer type) &body body) (declare (ignore type)) `(let ((,binding-name ,pointer))