X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fprimitives.lisp;h=c430894f711922ace55c007c5e25b1e660128575;hb=6f682746787779a2475eec53d7d46efab891b392;hp=007355c316209082abc7d6d22886cfe297b3403a;hpb=b3e638cc3c979d19656669edff857a7b6d2ce278;p=uffi.git diff --git a/src/primitives.lisp b/src/primitives.lisp index 007355c..c430894 100644 --- a/src/primitives.lisp +++ b/src/primitives.lisp @@ -87,9 +87,6 @@ supports takes advantage of this optimization." (make-hash-table :size 20 :test #'eq)) ) -#+(or cmu sbcl scl) -(defvar *cmu-sbcl-def-type-list* nil) - #+(or cmu scl) (defvar *cmu-sbcl-def-type-list* '((:char . (alien:signed 8)) @@ -104,8 +101,10 @@ supports takes advantage of this optimization." (:unsigned-long . (alien:unsigned 32)) (:float . alien:single-float) (:double . alien:double-float) + (:void . t) ) "Conversions in CMUCL for def-foreign-type are different than in def-function") + #+sbcl (defvar *cmu-sbcl-def-type-list* '((:char . (sb-alien:signed 8)) @@ -120,6 +119,7 @@ supports takes advantage of this optimization." (:unsigned-long . (sb-alien:unsigned 32)) (:float . sb-alien:single-float) (:double . sb-alien:double-float) + (:void . t) ) "Conversions in SBCL for def-foreign-type are different than in def-function") @@ -286,3 +286,9 @@ supports takes advantage of this optimization." ((and (eq (car result) :pointer) (eq context :allocation) :pointer)) (t result)))) + +(defun make-lisp-name (name) + (let ((converted (substitute #\- #\_ name))) + (intern + #+case-sensitive converted + #-case-sensitive (string-upcase converted))))