mirror of
https://github.com/mangosfour/server.git
synced 2025-12-11 16:37:03 +00:00
50 lines
1 KiB
C++
50 lines
1 KiB
C++
// -*- C++ -*-
|
|
|
|
//=============================================================================
|
|
/**
|
|
* @file Handle_Ops.h
|
|
*
|
|
* $Id: Handle_Ops.h 80826 2008-03-04 14:51:23Z wotte $
|
|
*
|
|
* Handle operations.
|
|
*/
|
|
//=============================================================================
|
|
|
|
#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"
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
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);
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|
|
|
|
#include /**/ "ace/post.h"
|
|
|
|
#endif /* ACE_HANDLE_OPS_H */
|