From 7e27a0ff64626026521dc5877b278794cea72e61 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Fri, 9 Feb 2018 16:10:32 +0100 Subject: [PATCH] cpp: Add SpawnShowWindow flag * lang/cpp/src/context.h (SpawnShowWindow): New. --- lang/cpp/src/context.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lang/cpp/src/context.h b/lang/cpp/src/context.h index 4cd5b307..aff8e49a 100644 --- a/lang/cpp/src/context.h +++ b/lang/cpp/src/context.h @@ -408,7 +408,8 @@ public: enum SpawnFlags { SpawnNone = 0, SpawnDetached = 1, - SpawnAllowSetFg = 2 + SpawnAllowSetFg = 2, + SpawnShowWindow = 4 }; /** Spwan the process \a file with arguments \a argv. *