Removed ACE_HAS_BSTRING, not used
[ACE_TAO.git] / ACE / ace / Handle_Ops.h
blobbc95fd30c3d31d807cbe4aa4f8fece4107cd9899
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Handle_Ops.h
7 * Handle operations.
8 */
9 //=============================================================================
11 #ifndef ACE_HANDLE_OPS_H
12 #define ACE_HANDLE_OPS_H
14 #include /**/ "ace/pre.h"
16 #include /**/ "ace/ACE_export.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 # pragma once
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include "ace/Global_Macros.h"
24 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
26 class ACE_Time_Value;
28 // = Operations on HANDLEs.
29 namespace ACE
31 /**
32 * Wait up to @a timeout amount of time to actively open a device.
33 * This method doesn't perform the @c connect, it just does the
34 * timed wait.
36 extern ACE_Export ACE_HANDLE handle_timed_open (
37 ACE_Time_Value *timeout,
38 const ACE_TCHAR *name,
39 int flags,
40 int perms,
41 LPSECURITY_ATTRIBUTES sa = 0);
44 ACE_END_VERSIONED_NAMESPACE_DECL
46 #include /**/ "ace/post.h"
48 #endif /* ACE_HANDLE_OPS_H */