Fix documentation for osl_executeProcess_WithRedirectedIO
The file handle arguments are out parameters, not input parameters. Change-Id: Iad604e4df9e89a8f83c4cb6a3faa35ee20cd80aa Reviewed-on: https://gerrit.libreoffice.org/48450 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Jenkins <ci@libreoffice.org>
This commit is contained in:
committed by
Michael Stahl
parent
1438c84a86
commit
cca67d26b6
@@ -203,17 +203,17 @@ SAL_DLLPUBLIC oslProcessError SAL_CALL osl_executeProcess(
|
|||||||
Pointer to a oslProcess variable, which receives the handle of the newly created process.
|
Pointer to a oslProcess variable, which receives the handle of the newly created process.
|
||||||
This parameter must not be NULL.
|
This parameter must not be NULL.
|
||||||
|
|
||||||
@param[in] pChildInputWrite
|
@param[out] pChildInputWrite
|
||||||
Pointer to a oslFileHandle variable that receives the handle which can be used to write
|
Pointer to a oslFileHandle variable that receives the handle which can be used to write
|
||||||
to the child process standard input device. The returned handle is not random accessible.
|
to the child process standard input device. The returned handle is not random accessible.
|
||||||
The handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL.
|
The handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL.
|
||||||
|
|
||||||
@param[in] pChildOutputRead
|
@param[out] pChildOutputRead
|
||||||
Pointer to a oslFileHandle variable that receives the handle which can be used to read from
|
Pointer to a oslFileHandle variable that receives the handle which can be used to read from
|
||||||
the child process standard output device. The returned handle is not random accessible.
|
the child process standard output device. The returned handle is not random accessible.
|
||||||
The Handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL.
|
The Handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL.
|
||||||
|
|
||||||
@param[in] pChildErrorRead
|
@param[out] pChildErrorRead
|
||||||
Pointer to a oslFileHandle variable that receives the handle which can be used to read from
|
Pointer to a oslFileHandle variable that receives the handle which can be used to read from
|
||||||
the child process standard error device. The returned handle is not random accessible.
|
the child process standard error device. The returned handle is not random accessible.
|
||||||
The Handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL.
|
The Handle has to be closed with osl_closeFile if no longer used. This parameter can be NULL.
|
||||||
|
Reference in New Issue
Block a user