[Overview][Constants][Types][Procedures and functions][Variables][Index] |
Exit code of last executed program.
Source position: dosh.inc line 99
function DosExitCode: Word; |
DosExitCode contains (in the low byte) the exit-code of a program executed with the Exec call.
None.
|
Execute another program, and wait for it to finish. |
Program Example5; uses Dos; { Program to demonstrate the Exec and DosExitCode function. } begin {$IFDEF Unix} WriteLn('Executing /bin/ls -la'); Exec('/bin/ls','-la'); {$ELSE} WriteLn('Executing Dir'); Exec(GetEnv('COMSPEC'),'/C dir'); {$ENDIF} WriteLn('Program returned with ExitCode ',Lo(DosExitCode)); end.