Reactos
at master 17 lines 474 B view raw
1/* 2 * PROJECT: ReactOS Automatic Testing Utility 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Class that creates a process and redirects its output to a pipe 5 * COPYRIGHT: Copyright 2015 Thomas Faber (thomas.faber@reactos.org) 6 */ 7 8class CPipedProcess : public CProcess 9{ 10private: 11 STARTUPINFOW m_StartupInfo; 12 13 LPSTARTUPINFOW InitStartupInfo(CPipe& Pipe); 14 15public: 16 CPipedProcess(const wstring& CommandLine, CPipe& Pipe); 17};