| Allegro CL version 10.1 Unrevised from 10.0 to 10.1. 10.0 version |
Arguments: name-or-ftype &optional errorp
Returns an internal structure containing a description of a foreign type. This internal structure can be passed to those functions that take a foreign type name (such as allocate-fobject).
This function is useful when the foreign-type is a type
description, such as (:array :int 10)
, that must be
parsed each time it is used in a function such as allocate-fobject. By calling
get-foreign-type once on (:array :int
10)
to create the internal description, and then passing that
internal description each time to allocate-fobject, that will save
the parsing cost on each call.
See ftype.htm for information on foreign types in Allegro CL and foreign-functions.htm for general information on foreign functions in Allegro CL.
Copyright (c) 1998-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page was not revised from the 10.0 page.
Created 2019.8.20.
| Allegro CL version 10.1 Unrevised from 10.0 to 10.1. 10.0 version |