Added missing using declarations.

[SVN r86455]
This commit is contained in:
Andrey Semashev
2013-10-26 15:21:25 +00:00
parent 84da532b39
commit 1e84644646

View File

@ -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;