summaryrefslogtreecommitdiff
path: root/boost/detail/winapi/overlapped.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/detail/winapi/overlapped.hpp')
-rw-r--r--boost/detail/winapi/overlapped.hpp51
1 files changed, 10 insertions, 41 deletions
diff --git a/boost/detail/winapi/overlapped.hpp b/boost/detail/winapi/overlapped.hpp
index 17dcb2e079..d9f4a576f4 100644
--- a/boost/detail/winapi/overlapped.hpp
+++ b/boost/detail/winapi/overlapped.hpp
@@ -1,51 +1,20 @@
-// overlapped.hpp --------------------------------------------------------------//
-
-// Copyright 2016 Klemens D. Morgenstern
-
-// Distributed under the Boost Software License, Version 1.0.
-// See http://www.boost.org/LICENSE_1_0.txt
+/*
+ * Copyright 2017 Andrey Semashev
+ *
+ * Distributed under the Boost Software License, Version 1.0.
+ * See http://www.boost.org/LICENSE_1_0.txt
+ *
+ * This header is deprecated, use boost/winapi/overlapped.hpp instead.
+ */
#ifndef BOOST_DETAIL_WINAPI_OVERLAPPED_HPP_
#define BOOST_DETAIL_WINAPI_OVERLAPPED_HPP_
-#include <boost/detail/winapi/basic_types.hpp>
+#include <boost/winapi/overlapped.hpp>
+#include <boost/detail/winapi/detail/deprecated_namespace.hpp>
#ifdef BOOST_HAS_PRAGMA_ONCE
#pragma once
#endif
-#if !defined( BOOST_USE_WINDOWS_H )
-extern "C" {
-struct _OVERLAPPED;
-}
-#endif
-
-namespace boost {
-namespace detail {
-namespace winapi {
-
-#ifdef BOOST_MSVC
-#pragma warning(push)
-#pragma warning(disable:4201) // nonstandard extension used : nameless struct/union
-#endif
-
-typedef struct BOOST_DETAIL_WINAPI_MAY_ALIAS _OVERLAPPED {
- ULONG_PTR_ Internal;
- ULONG_PTR_ InternalHigh;
- union {
- struct {
- DWORD_ Offset;
- DWORD_ OffsetHigh;
- };
- PVOID_ Pointer;
- };
- HANDLE_ hEvent;
-} OVERLAPPED_, *LPOVERLAPPED_;
-
-#ifdef BOOST_MSVC
-#pragma warning(pop)
-#endif
-
-}}}
-
#endif // BOOST_DETAIL_WINAPI_OVERLAPPED_HPP_