Time to commit some Work-In-Progress stuff before my diff gets too large..
[reactos.git] / rostests / rosautotest / CPipedProcess.h
1 /*
2 * PROJECT: ReactOS Automatic Testing Utility
3 * LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
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
8 class CPipedProcess : public CProcess
9 {
10 private:
11 STARTUPINFOW m_StartupInfo;
12
13 LPSTARTUPINFOW InitStartupInfo(CPipe& Pipe);
14
15 public:
16 CPipedProcess(const wstring& CommandLine, CPipe& Pipe);
17 };