views:

87

answers:

2

Posix provided both named and non-named pipes... Can you have a non-named pipes and windows and how to use them?

+2  A: 

Yes. They are called "Anonymous Pipes" in the Windows API documentation. For more details, see MSDN.

Reed Copsey
+1  A: 

Yes you can: CreatePipe() (vs. CreateNamedPipe()).

EricSchaefer