All Manuals > LispWorks Foreign Language Interface User Guide and Reference Manual > 5 Function and Macro Reference

NextPrevUpTopContentsIndex

install-embedded-module

Function
Summary

Installs an embedded dynamic module.

Package

fli

Signature

install-embedded-module name

Arguments

name

A symbol.

Description

The function install-embedded-module installs the embedded dynamic module name.

name must be a name of an embedded dynamic module that was set up either by get-embedded-module or setup-embedded-module.

install-embedded-module installs the module, which means making its code available to be used in Lisp, as if register-module was called with the original module.

Notes
  1. install-embedded-module must be called at run time, normally during the initialization of the application.
  2. The effect of install-embedded-module does not persist after save-image or deliver .
  3. install-embedded-module can be called repeatedly with the same name. The subsequent calls in the same invocation of the application do not have any effect.
  4. install-embedded-module does not return a useful value.
See also

get-embedded-module
get-embedded-module-data
setup-embedded-module
Incorporating a foreign module into a LispWorks image


LispWorks Foreign Language Interface User Guide and Reference Manual - 7 Dec 2011

NextPrevUpTopContentsIndex