Function
link-load
foreign-symbol-address name &key (errorp t) (functionp t) => result
The name of a foreign symbol.
A boolean.
A boolean.
The address of name ornil.
foreign-symbol-address function is used to find out whether a foreign symbol is defined, by looking for it in the foreign-symbol table. If its associated object code has been loaded into the image, its address is returned. Otherwise nil is returned, unless errorp isnil. nil (which is the default value), then an error will be signalled. If it isnil, no error will be reported, and the function will returnnil. t,foreign-symbol-address will assume that name is the name of a function. If it isnil it will assume that name is the name of a variable. The default value ist. (foreign-symbol-address 'chmod)
get-foreign-symbol