Difference between revisions of "ISInterface:EndScript"

From Lavish Software Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
=== Parameters ===
 
=== Parameters ===
 
*char *Filename
 
*char *Filename
:The '''Filename''' of the script to end
+
:'''[in]'''The '''Filename''' of the script to end
 
=== Return Value ===
 
=== Return Value ===
 
*bool
 
*bool
:returns true on success, false on failure
+
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
;Example code
 
;Example code
Line 17: Line 17:
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISInterface:RunScript|RunScript]]
 
* [[ISInterface:RunScript|RunScript]]
 +
* [[Script_Development]]
 
[[Category:ISXDK]]
 
[[Category:ISXDK]]
 
[[Category:ISInterface]]
 
[[Category:ISInterface]]

Latest revision as of 01:12, 2 September 2005

Syntax

  • bool EndScript(char *Filename)

Purpose

To end a running script

Usage

Parameters

  • char *Filename
[in]The Filename of the script to end

Return Value

  • bool
Returns true on success, false on failure

Examples

Example code
pISInterface->EndScript("test");

See Also