Difference between revisions of "ISInterface:FindFileSet"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*unsigned long FindFileSet(char *Filename)
 
== Purpose ==
 
== Purpose ==
 
+
Finding a unique identifier for a file
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*char *Filename
 +
:'''[in]''' Name of the filename to find
 
=== Return Value ===
 
=== Return Value ===
 
+
*unsigned long
 +
:The unique identifier for the set which represents '''Filename'''
 
== Examples ==
 
== Examples ==
 
+
unsigned long ident;
 +
ident = pISInterface->FindFileSet(default);
  
 
== See Also ==
 
== See Also ==

Latest revision as of 00:42, 3 September 2005

Syntax

  • unsigned long FindFileSet(char *Filename)

Purpose

Finding a unique identifier for a file

Usage

Parameters

  • char *Filename
[in] Name of the filename to find

Return Value

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

Examples

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

See Also