From 1e84644646f25f937b9e4ffb66fc9b6465783b8b Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sat, 26 Oct 2013 15:21:25 +0000 Subject: [PATCH] Added missing using declarations. [SVN r86455] --- include/boost/detail/winapi/synchronization.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/detail/winapi/synchronization.hpp b/include/boost/detail/winapi/synchronization.hpp index 46af3aa..b9497cb 100644 --- a/include/boost/detail/winapi/synchronization.hpp +++ b/include/boost/detail/winapi/synchronization.hpp @@ -52,12 +52,14 @@ namespace winapi # ifdef BOOST_NO_ANSI_APIS using ::CreateMutexW; + using ::OpenMutexW; using ::CreateEventW; using ::OpenEventW; using ::CreateSemaphoreW; using ::OpenSemaphoreW; # else using ::CreateMutexA; + using ::OpenMutexA; using ::CreateEventA; using ::OpenEventA; using ::CreateSemaphoreA;