Next: translate-to-foreign, Previous: free-translated-object, Up: Foreign Types [Contents][Index]
The foreign value to convert to a Lisp object.
A symbol naming a foreign type defined by defctype
.
The lisp value to pass in place of foreign-value
to Lisp code.
This generic function is invoked by CFFI to convert a foreign value to a Lisp value, such as when returning from a foreign function, passing arguments to a callback function, or accessing a foreign variable.
To extend the CFFI type system by performing custom translations, this
method may be specialized by EQL-specializing type-name
on a
symbol naming a foreign type defined with defctype
. This
method should return the appropriate Lisp value to use in place of the
foreign value.
The results are undefined if the type-name
parameter is
specialized in any way except an EQL specializer on a foreign type
defined with defctype
. Specifically, translations may not be
defined for built-in types.
Foreign Type Translators
translate-to-foreign
free-translated-object