I want to create a child process and read its stdout asynchronously. Turns out I have to create a named pipe to connect to stdout, since anonymous pipes do not support asynchronous reads.
I know about the functions CreateProcess , CreateNamedPipe , CreateFile and ReadFile , but is there any example code that connects them all? I am blinded by a sea of โโparameters.
source share