Opening a TStream on stdin/stdout in a Delphi console app - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T12:14:53Zhttp://stackoverflow.com/feeds/question/1060591http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1060591/opening-a-tstream-on-stdin-stdout-in-a-delphi-console-app9Opening a TStream on stdin/stdout in a Delphi console appJoe White2009-06-29T21:13:14Z2009-06-29T22:38:08Z
<p>I'm trying to write a Delphi console application that creates a TStream for its standard input, and another TStream for its standard output.</p>
<p>(It will be launched by a host app with its input and output redirected to pipes, and will be passing binary data to/from that host app, so TStream will be much better-suited to the task than ReadLn/WriteLn.)</p>
<p>How do I go about opening a TStream on standard input or standard output?</p>
http://stackoverflow.com/questions/1060591/opening-a-tstream-on-stdin-stdout-in-a-delphi-console-app/1060928#106092817Answer by Allen Bauer for Opening a TStream on stdin/stdout in a Delphi console appAllen Bauer2009-06-29T22:38:08Z2009-06-29T22:38:08Z<p>Off the top of my head:</p>
<pre><code> InputStream := THandleStream.Create(GetStdHandle(STD_INPUT_HANDLE));
OutputStream := THandleStream.Create(GetStdHandle(STD_OUTPUT_HANDLE));
</code></pre>
<p>Give that ago..</p>