wxProcess fixes (Detach() added), cleared/corrected wxExecute() documentation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1709 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-02-17 17:56:59 +00:00
parent ca5c8b2df6
commit 7e84f02dfd
6 changed files with 149 additions and 100 deletions

View File

@@ -946,11 +946,12 @@ arguments, terminated by NULL.
If {\it sync} is FALSE (the default), flow of control immediately returns.
If TRUE, the current application waits until the other program has terminated.
If execution is asynchronous, the return value is the process id,
otherwise it is a status value. A zero value indicates that the command could not
be executed.
The return value is the process id, not the exit code of invoked program (for
this you should use wxProcess). A zero value indicates that the command could
not be executed.
If callback isn't NULL and if execution is asynchronous,
If callback isn't NULL and if execution is asynchronous (note that callback
parameter can not be non NULL for synchronous execution),
\helpref{wxProcess::OnTerminate}{wxprocessonterminate} will be called when
the process finishes.