diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-30 22:04:47 +0100 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-12-01 10:21:03 +0100 |
commit | b203d4b43cb498aa7670c091b0d10aea456f24ed (patch) | |
tree | bb0a69774a90b9425e10898bd4f2600076243230 /xmrstak/misc/console.cpp | |
parent | bd8d84a62f4a48580edae69ce649959237f874f4 (diff) | |
download | xmr-stak-b203d4b43cb498aa7670c091b0d10aea456f24ed.zip xmr-stak-b203d4b43cb498aa7670c091b0d10aea456f24ed.tar.gz |
add environment variable `XMRSTAK_NOWAIT`
- add documentation
- add environment variable `XMRSTAK_NOWAIT`
Diffstat (limited to 'xmrstak/misc/console.cpp')
-rw-r--r-- | xmrstak/misc/console.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/xmrstak/misc/console.cpp b/xmrstak/misc/console.cpp index 8de5948..980760e 100644 --- a/xmrstak/misc/console.cpp +++ b/xmrstak/misc/console.cpp @@ -222,8 +222,13 @@ void printer::print_str(const char* str) #ifdef _WIN32 void win_exit(size_t code) { - printer::inst()->print_str("Press any key to exit."); - get_key(); + size_t envSize = 0; + getenv_s(&envSize, nullptr, 0, "XMRSTAK_NOWAIT"); + if(envSize == 0) + { + printer::inst()->print_str("Press any key to exit."); + get_key(); + } std::exit(code); } |