CShellWindow: add new enum option ACKNOWLEDGE_MSG

allows to show a messagebox instead a small ok button
This commit is contained in:
2014-10-05 00:13:58 +02:00
parent 3f6eaa11a3
commit 3408dbd833
2 changed files with 24 additions and 12 deletions

View File

@@ -39,7 +39,8 @@ class CShellWindow
enum shellwindow_modes
{
VERBOSE = 1,
ACKNOWLEDGE = 2
ACKNOWLEDGE = 2,
ACKNOWLEDGE_MSG = 4
};
CShellWindow(const std::string &cmd, const int mode = 0, int *res = NULL);
~CShellWindow();