X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/46759268573d82db67eac23b54c8fb63d2187be7..c046c2f653233b4e09830f672159ae205f59c6f6:/glib/ffi.lisp diff --git a/glib/ffi.lisp b/glib/ffi.lisp index 759f43d..aa95293 100644 --- a/glib/ffi.lisp +++ b/glib/ffi.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: ffi.lisp,v 1.16 2005-02-22 17:27:25 espen Exp $ +;; $Id: ffi.lisp,v 1.17 2005-02-25 23:55:06 espen Exp $ (in-package "GLIB") @@ -461,6 +461,15 @@ (declare (ignore type args)) +size-of-float+) +(defmethod to-alien-form (form (type (eql 'single-float)) &rest args) + (declare (ignore type args)) + `(coerce ,form 'single-float)) + +(defmethod to-alien-function ((type (eql 'single-float)) &rest args) + (declare (ignore type args)) + #'(lambda (number) + (coerce number 'single-float))) + (defmethod writer-function ((type (eql 'single-float)) &rest args) (declare (ignore type args)) #'(lambda (value location &optional (offset 0)) @@ -480,6 +489,15 @@ (declare (ignore type args)) +size-of-double+) +(defmethod to-alien-form (form (type (eql 'double-float)) &rest args) + (declare (ignore type args)) + `(coerce ,form 'double-float)) + +(defmethod to-alien-function ((type (eql 'double-float)) &rest args) + (declare (ignore type args)) + #'(lambda (number) + (coerce number 'double-float))) + (defmethod writer-function ((type (eql 'double-float)) &rest args) (declare (ignore type args)) #'(lambda (value location &optional (offset 0))