Difference between revisions of "ISInterface:OpenSettings"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*unsigned long OpenSettings(char *Filename)
 
== Purpose ==
 
== Purpose ==
 
+
Open an XML Settings file
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*char *Filename
 +
:'''[in]''' settings '''Filename''' to open
 
=== Return Value ===
 
=== Return Value ===
 
+
*unsigned long
 +
:The unique identifier for the set which represents '''Filename'''
 
== Examples ==
 
== Examples ==
 
+
unsigned long ident;
 
+
ident = pISInterface->OpenSettings(default);
 
== See Also ==
 
== See Also ==
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]

Latest revision as of 00:43, 3 September 2005

Syntax

  • unsigned long OpenSettings(char *Filename)

Purpose

Open an XML Settings file

Usage

Parameters

  • char *Filename
[in] settings Filename to open

Return Value

  • unsigned long
The unique identifier for the set which represents Filename

Examples

unsigned long ident;
ident = pISInterface->OpenSettings(default);

See Also