1
0

WriteConsoleInput can return FALSE when running as servic

This commit is contained in:
Tiger Wang 2020-09-05 14:23:54 +01:00
parent 29808c61c9
commit 040380321c

View File

@ -1011,10 +1011,6 @@ void cRoot::TransitionNextState(NextState a_NextState)
s_StopEvent.Set(); s_StopEvent.Set();
#ifdef WIN32 #ifdef WIN32
if (g_RunAsService)
{
return;
}
DWORD Length; DWORD Length;
INPUT_RECORD Record INPUT_RECORD Record
@ -1034,7 +1030,7 @@ void cRoot::TransitionNextState(NextState a_NextState)
// Can't kill the input thread since it breaks cin (getline doesn't block / receive input on restart) // Can't kill the input thread since it breaks cin (getline doesn't block / receive input on restart)
// Apparently no way to unblock getline apart from CancelIoEx, but xoft wants Windows XP support // Apparently no way to unblock getline apart from CancelIoEx, but xoft wants Windows XP support
// Only thing I can think of for now. // Only thing I can think of for now. Also, ignore the retval since sometimes there's no cin.
VERIFY(WriteConsoleInput(GetStdHandle(STD_INPUT_HANDLE), &Record, 1, &Length) == TRUE); WriteConsoleInput(GetStdHandle(STD_INPUT_HANDLE), &Record, 1, &Length);
#endif #endif
} }