summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/testConsoleBuf.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/kwsys/testConsoleBuf.cxx')
-rw-r--r--Source/kwsys/testConsoleBuf.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/kwsys/testConsoleBuf.cxx b/Source/kwsys/testConsoleBuf.cxx
index 3b8cdab..21930f9 100644
--- a/Source/kwsys/testConsoleBuf.cxx
+++ b/Source/kwsys/testConsoleBuf.cxx
@@ -74,7 +74,6 @@ std::basic_streambuf<wchar_t>* errstream(const wchar_t* unused)
return std::wcerr.rdbuf();
}
-//----------------------------------------------------------------------------
template <typename T>
static void dumpBuffers(const T* expected, const T* received, size_t size)
{
@@ -107,7 +106,6 @@ static void dumpBuffers(const T* expected, const T* received, size_t size)
std::cerr << std::endl;
}
-//----------------------------------------------------------------------------
static bool createProcess(HANDLE hIn, HANDLE hOut, HANDLE hErr)
{
BOOL bInheritHandles = FALSE;
@@ -158,7 +156,6 @@ static bool createProcess(HANDLE hIn, HANDLE hOut, HANDLE hErr)
return success;
}
-//----------------------------------------------------------------------------
static void finishProcess(bool success)
{
if (success) {
@@ -172,7 +169,6 @@ static void finishProcess(bool success)
CloseHandle(processInfo.hThread);
}
-//----------------------------------------------------------------------------
static bool createPipe(PHANDLE readPipe, PHANDLE writePipe)
{
SECURITY_ATTRIBUTES securityAttributes;
@@ -183,7 +179,6 @@ static bool createPipe(PHANDLE readPipe, PHANDLE writePipe)
: true;
}
-//----------------------------------------------------------------------------
static void finishPipe(HANDLE readPipe, HANDLE writePipe)
{
if (readPipe != INVALID_HANDLE_VALUE) {
@@ -194,7 +189,6 @@ static void finishPipe(HANDLE readPipe, HANDLE writePipe)
}
}
-//----------------------------------------------------------------------------
static HANDLE createFile(LPCWSTR fileName)
{
SECURITY_ATTRIBUTES securityAttributes;
@@ -218,7 +212,6 @@ static HANDLE createFile(LPCWSTR fileName)
return file;
}
-//----------------------------------------------------------------------------
static void finishFile(HANDLE file)
{
if (file != INVALID_HANDLE_VALUE) {
@@ -226,8 +219,6 @@ static void finishFile(HANDLE file)
}
}
-//----------------------------------------------------------------------------
-
#ifndef MAPVK_VK_TO_VSC
#define MAPVK_VK_TO_VSC (0)
#endif
@@ -269,7 +260,6 @@ static void writeInputKeyEvent(INPUT_RECORD inputBuffer[], WCHAR chr)
inputBuffer[1].Event.KeyEvent.dwControlKeyState = 0;
}
-//----------------------------------------------------------------------------
static int testPipe()
{
int didFail = 1;
@@ -377,7 +367,6 @@ static int testPipe()
return didFail;
}
-//----------------------------------------------------------------------------
static int testFile()
{
int didFail = 1;
@@ -487,7 +476,6 @@ static int testFile()
#define _WIN32_WINNT_VISTA 0x0600
#endif
-//----------------------------------------------------------------------------
static int testConsole()
{
int didFail = 1;
@@ -748,7 +736,6 @@ static int testConsole()
#endif
-//----------------------------------------------------------------------------
int testConsoleBuf(int, char* [])
{
int ret = 0;