PDA

View Full Version : Question about QProcess::ExitCode() !



jackmack
30th July 2010, 09:33
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.

tbscope
30th July 2010, 09:38
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)