Difference between revisions of "ISInterface:AddTopLevelObject"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 +
==Syntax==
 +
*bool AddTopLevelObject(char *Name, fLSTopLevelObject Function)
 
== Purpose ==
 
== Purpose ==
 
+
To create [[LavishScript:Top-Level_Objects|Top-Level_Objects]]
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 +
*char *Name
 +
:'''[in]'''Name of the Top-Level Object
 +
*fLSTopLevelObject Function
 +
:'''[in]'''Function the TLO executes
 
=== Return Value ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
  
 
== See Also ==
 
== See Also ==
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]
 +
* [[LavishScript:Top-Level_Objects|Top-Level_Objects]]
  
 
[[Category:ISXDK]]
 
[[Category:ISXDK]]
 
[[Category:ISInterface]]
 
[[Category:ISInterface]]

Revision as of 01:08, 2 September 2005

Syntax

  • bool AddTopLevelObject(char *Name, fLSTopLevelObject Function)

Purpose

To create Top-Level_Objects

Usage

Parameters

  • char *Name
[in]Name of the Top-Level Object
  • fLSTopLevelObject Function
[in]Function the TLO executes

Return Value

  • bool
Returns true on success, false on failure

Examples

See Also