| 123456789101112131415161718192021222324252627282930313233343536 |
- /*
- XCC Utilities and Library
- Copyright (C) 2002 Olaf van der Spek <[email protected]>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #include "stdafx.h"
- #include "win_handle.h"
- int create_process(const std::string& exe_name, const std::string& _cmd_line, bool wait)
- {
- char cmd_line[256];
- strcpy(cmd_line, ("\"" + exe_name + "\" " + _cmd_line).c_str());
- STARTUPINFO si;
- memset(&si, 0, sizeof(STARTUPINFO));
- si.cb = sizeof(STARTUPINFO);
- PROCESS_INFORMATION pi;
- int error = !CreateProcess(exe_name.c_str(), cmd_line, NULL, NULL, false, CREATE_DEFAULT_ERROR_MODE, NULL, NULL, &si, &pi);
- if (!error && wait)
- WaitForSingleObject(pi.hProcess, INFINITE);
- CloseHandle(pi.hProcess);
- CloseHandle(pi.hThread);
- return error;
- }
|