Kyle
Kyle

Reputation: 3042

How could I link my c++ console application to take control of an existing console?

How would I take control of the console of a batch file, and load it into my c++ application?

Upvotes: 0

Views: 143

Answers (1)

Klaim
Klaim

Reputation: 69672

Make the batch file output to a text file that will then be processed by your application.

Upvotes: 1

Related Questions