diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2017-10-03 15:09:04 -0300 |
---|---|---|
committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2017-10-03 15:09:04 -0300 |
commit | 4b695c3bdf562d55fb617a6c48eb5c1701b81325 (patch) | |
tree | 22bc1b017d147e7b85f744ec03410f509e001df2 /platform/uwp/os_uwp.cpp | |
parent | c5ab18f33e34b49b0603382af4af5e3fcd18c4ed (diff) | |
download | redot-engine-4b695c3bdf562d55fb617a6c48eb5c1701b81325.tar.gz |
OS::execute can now read from stderr too when executing with a pipe
Diffstat (limited to 'platform/uwp/os_uwp.cpp')
-rw-r--r-- | platform/uwp/os_uwp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/os_uwp.cpp b/platform/uwp/os_uwp.cpp index 031c714514..ff5a935229 100644 --- a/platform/uwp/os_uwp.cpp +++ b/platform/uwp/os_uwp.cpp @@ -674,7 +674,7 @@ void OSUWP::set_cursor_shape(CursorShape p_shape) { cursor_shape = p_shape; } -Error OSUWP::execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id, String *r_pipe, int *r_exitcode) { +Error OSUWP::execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id, String *r_pipe, int *r_exitcode, bool read_stderr) { return FAILED; }; |