lmgrDefineInits
lmgrDefineInits(l_initCallback l_termCallback) =>t / nil
Description
Defines the initialization action to perform when the customization code begins (after parsing the extension file) and the termination action to perform immediately before Library Manager terminates. You must define the callback in the Virtuoso program before it starts. Otherwise, you get an error. No arguments are passed to either callback.
This SKILL API can be used in cdsLibMgr.il only.
Arguments
Value Returned
Examples
Defines a callback to be started when Library Manager is started and another when it terminates. This can then do some dynamic customization, depending on the current session.
lmgrDefineInits( '( "myInitLibMgr" ) '( "myCloseLibMgr" ) )
=> t
Return to top