Using asynchronous RPC pipes without APC callback - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:35:39Z http://stackoverflow.com/feeds/question/759959 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/759959/using-asynchronous-rpc-pipes-without-apc-callback 0 Using asynchronous RPC pipes without APC callback sharptooth 2009-04-17T10:46:40Z 2009-04-17T18:37:07Z <p>Microsoft RPC has a mechanism called <a href="http://msdn.microsoft.com/en-us/library/aa379155%28VS.85%29.aspx" rel="nofollow">asynchronous pipes</a>. The only sample for handling it I've seen so far (in MSDN) involves using APC (asynchronous procedure call) callbacks.</p> <p>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?</p>