Я создаю 5 подпроцессов из своего основного процесса и жду, пока все они завершатся.Каждый из подпроцессов создает свое собственное окно консоли.То, что я хочу сделать, это отключить кнопку закрытия консольных окон, созданных подпроцессами.Я не мог найти никаких ресурсов для этого.
- Как сохранить консоль подпроцесса открытой, чтобы при нажатии пользователем кнопки закрытия консоли она не закрывалась?
GetExitCodeProcess(pi.hProcess, &exitCode)
всегда возвращает false &последний код ошибки из GetLastError()
равен 5. Но значение exitCode
показывает правильное значение.Почему это происходит?
Вот мой код:
#include "stdafx.h"
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
#include <string>
#include <iostream>
#include <vector>
using namespace std;
wstring to_wstring(const string& str)
{
std::wstring ws;
ws.assign(str.begin(), str.end());
return ws;
}
vector<PROCESS_INFORMATION> v;
int main(int argc, TCHAR *argv[])
{
int noOfProcess = 4;
for (int i = 1; i <= noOfProcess; i++) {
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
ZeroMemory(&pi, sizeof(pi));
auto ws = to_wstring("D:\\programming\\test.exe");
TCHAR *cmd;
cmd = new TCHAR[ws.length() + 10];
_tcscpy_s(cmd, ws.length() + 1, ws.c_str());
// Start the child process.
if (!CreateProcess(NULL, // No module name (use command line)
cmd, // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
true, // Set handle inheritance to FALSE
CREATE_NEW_CONSOLE, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi) // Pointer to PROCESS_INFORMATION structure
)
{
printf("CreateProcess failed (%d).\n", GetLastError());
return 0;
}
cout << "Started Process " << pi.hProcess << endl;
v.push_back(pi);
}
while (v.size()) {
for (auto it = v.begin(), next_it = v.begin(); it != v.end(); it = next_it) {
next_it = it; it++;
PROCESS_INFORMATION &pi = *it;
DWORD exitCode = 0;
if (GetExitCodeProcess(pi.hProcess, &exitCode) == FALSE)
{
// Always return error code 5 but exitcode is set to correct value
cout << GetLastError() << endl;
}
if (exitCode == STILL_ACTIVE)
continue;
cout << "Finished Process " << pi.hProcess << " With exit code " << exitCode << endl;
// Close process and thread handles.
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
v.erase(it);
}
}
return 0;
}