Question about QProcess::ExitCode() !
Hi all,
I'm using QProcess to start an external application. All is working well but I want to know what the exitCode() means. It's a simple integer value which is also passed to slot finished().
Is the integer value a plattform specific indetifier?
I'm using WinXP.
Thanks.
Re: Question about QProcess::ExitCode() !
In general
0 = exit without problems (normal exit)
> 0 = exit with a problem.
Look in the documentation of the program to see what it can return (if it is documented at all)