Difference between revisions of "ISInterface:FindSet"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*unsigned long FindSet(unsigned long &ParentSetGUID, char *Name)
 
== Purpose ==
 
== Purpose ==
 
+
To find the unique identifier for a given set
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*unsigned long &ParentSetGUID
 +
:'''[in]''' Unique identify number for the parent set
 +
*char *Name
 +
:'''[in]''' Name of the set we're looking for
 
=== Return Value ===
 
=== Return Value ===
 
+
*unsigned long
 +
:Returns the unique identifier for the set
 
== Examples ==
 
== Examples ==
 
+
unsigned long currentset;
 
+
currentset = pISInterface->FindSet(ParentSet,"fruit");
 
== See Also ==
 
== See Also ==
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]

Latest revision as of 00:49, 3 September 2005

Syntax

  • unsigned long FindSet(unsigned long &ParentSetGUID, char *Name)

Purpose

To find the unique identifier for a given set

Usage

Parameters

  • unsigned long &ParentSetGUID
[in] Unique identify number for the parent set
  • char *Name
[in] Name of the set we're looking for

Return Value

  • unsigned long
Returns the unique identifier for the set

Examples

unsigned long currentset;
currentset = pISInterface->FindSet(ParentSet,"fruit");

See Also