> is there a way to access the commandline, i.e., to what
> every C program has in the arguments to main ?
We use something like this:
VAR p: KERNEL32.StringPtr;
BEGIN
p := KERNEL32.GetCommandLineA();
IF (p # NIL) & (p$ # "") THEN
... do something with the command line parameters ...
END;
Best regards
Cuno Pfister
Oberon microsystems, Inc.
Received on Fri Aug 04 2000 - 14:48:22 UTC