Using asynchronous RPC pipes without APC callback - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T04:35:39Zhttp://stackoverflow.com/feeds/question/759959http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/759959/using-asynchronous-rpc-pipes-without-apc-callback0Using asynchronous RPC pipes without APC callbacksharptooth2009-04-17T10:46:40Z2009-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>