LibraryTools[ActivationModule] - set the procedure or module to be called when a library is opened
|
Calling Sequence
|
|
ActivationModule( archive, m )
|
|
Parameters
|
|
archive
|
-
|
string; Maple library
|
m
|
-
|
module or procedure
|
|
|
|
|
Description
|
|
•
|
The ActivationModule( archive, m) calling sequence sets the module or function to be called when the archive is opened. A ".mla" archive can be opened by specifying the file as command-line argument to Maple, or by using the File>Open menu. Any archive can be opened by using the march('open', archive) command.
|
•
|
When a library archive containing an activation module is opened, that module is called with one argument, the path to the archive file. This function can be used to run arbitrary Maple code, including code to unpack files stored in the archive.
|
•
|
If m is a module, it should have an export named ModuleApply. For details, see the ModuleApply help page.
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
>
|
ActivationModule(LibLocation,proc() print("hi") end);
|
|
|
Download Help Document
Was this information helpful?