Difference between revisions of "ISInterface:RunCommandFile"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | ==Syntax== | ||
+ | *bool RunCommandFile(char *Filename) | ||
== Purpose == | == Purpose == | ||
− | + | To run a [[LavishScript:Command Files|command file]] | |
== Usage == | == Usage == | ||
=== Parameters === | === Parameters === | ||
+ | *char *Filename | ||
+ | :'''[in]''' '''Filename''' of the command file | ||
=== Return Value === | === Return Value === | ||
− | + | *bool | |
+ | :Returns true on success, false on failure | ||
== Examples == | == Examples == | ||
− | + | ===Run a command file=== | |
+ | *pISInterface->RunCommandFile("CommandFiles\\test.ice") | ||
== See Also == | == See Also == | ||
* [[ISXDK:ISInterface|ISInterface]] | * [[ISXDK:ISInterface|ISInterface]] | ||
− | + | * [[LavishScript:Command Files|Command Files]] | |
[[Category:ISXDK]] | [[Category:ISXDK]] | ||
[[Category:ISInterface]] | [[Category:ISInterface]] |
Latest revision as of 01:13, 2 September 2005
Contents
Syntax
- bool RunCommandFile(char *Filename)
Purpose
To run a command file
Usage
Parameters
- char *Filename
- [in] Filename of the command file
Return Value
- bool
- Returns true on success, false on failure
Examples
Run a command file
- pISInterface->RunCommandFile("CommandFiles\\test.ice")