Windows: the qt GUI builds with Qt/MinGW. No link.

This commit is contained in:
Jean-Francois Dockes 2015-10-02 18:30:13 +02:00
parent bca286836e
commit e981394808
12 changed files with 322 additions and 15 deletions

View file

@ -427,6 +427,18 @@ void ExecCmd::zapChild()
setKill();
(void)wait();
}
bool ExecCmd::requestChildExit()
{
if (m_piProcInfo.hProcess) {
LOGDEB(("ExecCmd: GenerateConsoleCtrlEvent -> %d\n",
m_piProcInfo.dwProcessId));
return GenerateConsoleCtrlEvent(CTRL_BREAK_EVENT,
m_piProcInfo.dwProcessId);
}
return false;
}
void ExecCmd::putenv(const string &envassign)
{
vector<string> v;