mirror of
https://github.com/yuzu-emu/ext-boost.git
synced 2025-01-05 16:35:42 +00:00
34 lines
756 B
C++
34 lines
756 B
C++
// LocalFree.hpp --------------------------------------------------------------//
|
|
|
|
// Copyright 2010 Vicente J. Botet Escriba
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// See http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
|
|
#ifndef BOOST_DETAIL_WINAPI_LOCALFREE_HPP
|
|
#define BOOST_DETAIL_WINAPI_LOCALFREE_HPP
|
|
|
|
#include <boost/detail/winapi/basic_types.hpp>
|
|
|
|
#ifdef BOOST_HAS_PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
namespace boost {
|
|
namespace detail {
|
|
namespace winapi {
|
|
#if defined( BOOST_USE_WINDOWS_H )
|
|
typedef HANDLE_ HLOCAL_;
|
|
|
|
using ::LocalFree;
|
|
#else
|
|
extern "C" typedef HANDLE_ HLOCAL_;
|
|
extern "C" __declspec(dllimport) HLOCAL_ WINAPI
|
|
LocalFree(HLOCAL_ hMem);
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
#endif // BOOST_DETAIL_WINAPI_LOCALFREE_HPP
|