Difference between revisions of "ISInterface:RunCommandFile"

From Lavish Software Wiki
Jump to navigation Jump to search
 
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
 +
:'''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]]

Revision as of 00:55, 2 September 2005

Syntax

  • bool RunCommandFile(char *Filename)

Purpose

To run a command file

Usage

Parameters

  • char *Filename
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")

See Also