Difference between revisions of "ISInterface:GetArgs"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 2: Line 2:
 
*char *GetArgs(int BeginInclusive, int EndExclusive, char *argv[], char *buf)
 
*char *GetArgs(int BeginInclusive, int EndExclusive, char *argv[], char *buf)
 
== Purpose ==
 
== Purpose ==
 
+
Gets the arguments for a function or command
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 02:14, 2 September 2005

Syntax

  • char *GetArgs(int BeginInclusive, int EndExclusive, char *argv[], char *buf)

Purpose

Gets the arguments for a function or command

Usage

Parameters

  • int BeginInclusive
[in] Which argument to start with
  • int EndExclusive
[in] Which argument to end before
  • char *argv[]
[in] Array of arguments
  • char *buf
[out] Output

Return Value

  • char
Returns the output buffer

Examples

See Also