blob: 7f50eba82708caf66fc4c39f73975d1a4fda86ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// -*- C++ -*-
//=============================================================================
/**
* @file Handle_Ops.h
*
* $Id$
*
* This class consolidates the operations on the Handles.
*
* @author Priyanka Gontla <pgontla@ece.uci.edu>
*/
//=============================================================================
#ifndef ACE_HANDLE_OPS_H
#define ACE_HANDLE_OPS_H
#include /**/ "ace/pre.h"
#include "ace/ACE_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Global_Macros.h"
class ACE_Time_Value;
// = Operations on HANDLEs.
namespace ACE
{
/**
* Wait up to @a timeout> amount of time to actively open a device.
* This method doesn't perform the @c connect, it just does the
* timed wait.
*/
extern ACE_Export ACE_HANDLE handle_timed_open (
ACE_Time_Value *timeout,
const ACE_TCHAR *name,
int flags,
int perms,
LPSECURITY_ATTRIBUTES sa = 0);
}
#include /**/ "ace/post.h"
#endif /* ACE_HANDLE_OPS_H */
|