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:
Milian Wolff
2018-01-23 17:40:51 +01:00
committed by Michael Stahl
parent 1438c84a86
commit cca67d26b6

View File

@@ -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.
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
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.
@param[in] pChildOutputRead
@param[out] pChildOutputRead
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 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
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.