Windows: the qt GUI builds with Qt/MinGW. No link.
This commit is contained in:
parent
bca286836e
commit
e981394808
12 changed files with 322 additions and 15 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue