blob: 4ca09d7887e802d88270436d8b754d1bf842c0e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* -*- C++ -*- */
// $Id$
ACE_INLINE int
ACE_SPIPE_Connector::reset_new_handle (ACE_HANDLE handle)
{
ACE_UNUSED_ARG (handle);
// Nothing to do here since the handle is not a socket
return 0;
}
|