Difference between revisions of "ISInterface:LoadExtension"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
== Purpose == | == Purpose == | ||
+ | The LoadExtension function allows an extension to cause another to be loaded. | ||
== Usage == | == Usage == | ||
=== Parameters === | === Parameters === | ||
+ | * char *Filename | ||
+ | : The filename of the extension to load. The function will follow the Inner Space extension search order. Relative or absolute paths are allowed. | ||
+ | |||
=== Return Value === | === Return Value === | ||
+ | * bool | ||
+ | : true if the extension was successfully loaded. The function will fail if the extension is already loaded | ||
== Examples == | == Examples == | ||
== See Also == | == See Also == | ||
+ | * [[ISXDK:ISInterface|ISInterface]]::[[ISInterface:UnloadExtension|UnloadExtension]] | ||
+ | * [[ISXDK:ISInterface|ISInterface]]::[[ISInterface:IsExtensionLoaded|IsExtensionLoaded]] | ||
* [[ISXDK:ISInterface|ISInterface]] | * [[ISXDK:ISInterface|ISInterface]] | ||
[[Category:ISXDK]] | [[Category:ISXDK]] | ||
[[Category:ISInterface]] | [[Category:ISInterface]] |
Revision as of 01:28, 23 July 2005
Purpose
The LoadExtension function allows an extension to cause another to be loaded.
Usage
Parameters
- char *Filename
- The filename of the extension to load. The function will follow the Inner Space extension search order. Relative or absolute paths are allowed.
Return Value
- bool
- true if the extension was successfully loaded. The function will fail if the extension is already loaded