
Hello,
Is it possible to completely unload a module without unloading the whole library - through smiExit? Also, is it possible to know the names of "imported" modules in a module without having to load them?
Thanks in advance, soso
______________________________________________________________________ Do you want a free e-mail for life ? Get it at http://www.email.ro/

winston writes:
winston> Is it possible to completely unload a module without winston> unloading the whole library - through smiExit?
No.
winston> Also, is it possible to know the names of "imported" modules winston> in a module without having to load them?
The parser automatically loads imported modules (which in most cases is needed unless you have unused imports) so the answer is no. Well, you can of course load a module by making sure that the library does not find any modules from which things are imported. The library will generate a bunch of error messages and I have no clue whether the internal import data structures will be in a usable state. Even if this works, I would not recommend to do this.
/js
participants (2)
-
Juergen Schoenwaelder
-
winston