aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System
diff options
context:
space:
mode:
Diffstat (limited to 'lib/System')
-rw-r--r--lib/System/Win32/Process.cpp13
-rw-r--r--lib/System/Win32/Process.inc13
2 files changed, 26 insertions, 0 deletions
diff --git a/lib/System/Win32/Process.cpp b/lib/System/Win32/Process.cpp
index 10fec05..dc46641 100644
--- a/lib/System/Win32/Process.cpp
+++ b/lib/System/Win32/Process.cpp
@@ -14,6 +14,7 @@
#include "Win32.h"
#include <psapi.h>
#include <malloc.h>
+#include <io.h>
#pragma comment(lib, "psapi.lib")
@@ -99,5 +100,17 @@ void Process::PreventCoreFiles() {
// dialog box from coming up. Or maybe not...
}
+bool Process::StandardInIsUserInput() {
+ return GetFileType((HANDLE)_get_osfhandle(0)) == FILE_TYPE_CHAR;
+}
+
+bool Process::StandardOutIsDisplayed() {
+ return GetFileType((HANDLE)_get_osfhandle(1)) == FILE_TYPE_CHAR;
+}
+
+bool Process::StandardErrIsDisplayed() {
+ return GetFileType((HANDLE)_get_osfhandle(2)) == FILE_TYPE_CHAR;
+}
+
}
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab
diff --git a/lib/System/Win32/Process.inc b/lib/System/Win32/Process.inc
index 10fec05..dc46641 100644
--- a/lib/System/Win32/Process.inc
+++ b/lib/System/Win32/Process.inc
@@ -14,6 +14,7 @@
#include "Win32.h"
#include <psapi.h>
#include <malloc.h>
+#include <io.h>
#pragma comment(lib, "psapi.lib")
@@ -99,5 +100,17 @@ void Process::PreventCoreFiles() {
// dialog box from coming up. Or maybe not...
}
+bool Process::StandardInIsUserInput() {
+ return GetFileType((HANDLE)_get_osfhandle(0)) == FILE_TYPE_CHAR;
+}
+
+bool Process::StandardOutIsDisplayed() {
+ return GetFileType((HANDLE)_get_osfhandle(1)) == FILE_TYPE_CHAR;
+}
+
+bool Process::StandardErrIsDisplayed() {
+ return GetFileType((HANDLE)_get_osfhandle(2)) == FILE_TYPE_CHAR;
+}
+
}
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab