From 27fa97f44d2a705627004b969c6106cbe65c238c Mon Sep 17 00:00:00 2001 From: Nathan Bowhay Date: Wed, 11 Feb 2015 09:52:59 -0800 Subject: [PATCH] shellExecute return documentation Added documentation to shellExecute about bool that is returned. --- Engine/source/platformWin32/winExec.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Engine/source/platformWin32/winExec.cpp b/Engine/source/platformWin32/winExec.cpp index 67ef9d397..aaf341b55 100644 --- a/Engine/source/platformWin32/winExec.cpp +++ b/Engine/source/platformWin32/winExec.cpp @@ -141,6 +141,7 @@ DefineConsoleFunction( shellExecute, bool, (const char * executable, const char "@param executable Name of the executable or batch file\n" "@param args Optional list of arguments, in string format, to pass to the executable\n" "@param directory Optional string containing path to output or shell\n" + "@return true if executed, false if not\n" "@ingroup Platform") { ExecuteThread *et = new ExecuteThread( executable, args, directory );