From: Robin Dunn <robin@alldunn.com> Date: Mon, 20 Dec 2004 22:44:52 +0000 (+0000) Subject: Added wxEXEC_NODISABLE flag X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9c7e3e86fb82829dcdda499e3ec1a5acffebdee9 Added wxEXEC_NODISABLE flag git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31093 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_process.i b/wxPython/src/_process.i index 52f778d493..5474130544 100644 --- a/wxPython/src/_process.i +++ b/wxPython/src/_process.i @@ -164,7 +164,12 @@ enum // under Unix, if the process is the group leader then killing -pid kills // all children as well as pid - wxEXEC_MAKE_GROUP_LEADER = 4 + wxEXEC_MAKE_GROUP_LEADER = 4, + + // by default synchronous execution disables all program windows to avoid + // that the user interacts with the program while the child process is + // running, you can use this flag to prevent this from happening + wxEXEC_NODISABLE = 8 };