Difference between revisions of "ISInterface:GetArgsQuotedNF"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
+ | ===Syntax=== | ||
+ | *char *GetArgsQuotedNF(int BeginInclusive, int EndExclusive, char *argv[], char *buf) | ||
== Purpose == | == Purpose == | ||
− | + | Gets the arguments for a function or command | |
== Usage == | == Usage == | ||
=== Parameters === | === 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 === | === Return Value === | ||
+ | *char | ||
+ | :Returns the output buffer | ||
+ | == Examples == | ||
− | |||
== See Also == | == See Also == |
Latest revision as of 02:15, 2 September 2005
Syntax
- char *GetArgsQuotedNF(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