Is it possible to use overlapped I/O with an anonymous pipe? CreatePipe() does not have any way of specifying FILE_FLAG_OVERLAPPED, so I assume ReadFile() will block, even if I supply an OVERLAPPED-structure.
Is it possible to use overlapped I/O with an anonymous pipe? CreatePipe() does not
Share
Here is an implementation for an anonymous pipe function with the possibility to specify FILE_FLAG_OVERLAPPED: