Finds specific arguments that are on process’ command line.
GetProcessArgv(int index, string *argument));
Parameter |
Description |
---|---|
index |
Argument number you want to find, zero index based. |
argument |
String to which you want to put the argument. |
Integer.
Returns 1 for success, and 0 for failure.
string myArg;
int rv;
rv = GetProcessArgv(3, &myArg)
Copyright © 2005. Sybase Inc. All rights reserved. |
![]() |