winapi - Overlapped I/O on anonymous pipe -
is possible use overlapped i/o anonymous pipe? createpipe() not have way of specifying file_flag_overlapped, assume readfile() block, if supply overlapped-structure.
no. explained here, anonymous pipes not support asynchronous i/o. need use named pipe. there's example code on msdn here , here.
Comments
Post a Comment