blob: 9ce4c1a785544403ffb5e9c6a7da3654aa33d7d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* -*- C++ -*- */
// $Id$
// SPIPE_Connector.i
ASYS_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;
}
|