views:

394

answers:

0

Microsoft RPC has a mechanism called asynchronous pipes. The only sample for handling it I've seen so far (in MSDN) involves using APC (asynchronous procedure call) callbacks.

Is there a way to implement client and server side pipe handling without APC - for example, with some wait functions? What are the key steps to doing this?