Difference between revisions of "ISInterface:RunScript"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
=== Parameters === | === Parameters === | ||
*char *Filename | *char *Filename | ||
− | :The '''Filename''' of the script to run | + | :'''[in]'''The '''Filename''' of the script to run |
=== Return Value === | === Return Value === | ||
*bool | *bool | ||
Line 13: | Line 13: | ||
;Example code | ;Example code | ||
− | pISInterface-> | + | pISInterface->RunScript("test"); |
== See Also == | == See Also == |
Latest revision as of 00:18, 8 September 2005
Syntax
bool RunScript(char *Filename)
Purpose
To run a Script
Usage
Parameters
- char *Filename
- [in]The Filename of the script to run
Return Value
- bool
- Returns true on success, false on failure
Examples
- Example code
pISInterface->RunScript("test");