Added missing using declarations.

[SVN r86454]
This commit is contained in:
Andrey Semashev
2013-10-26 15:18:21 +00:00
parent bae1bebd28
commit 84da532b39

View File

@ -55,11 +55,13 @@ namespace winapi
using ::CreateEventW;
using ::OpenEventW;
using ::CreateSemaphoreW;
using ::OpenSemaphoreW;
# else
using ::CreateMutexA;
using ::CreateEventA;
using ::OpenEventA;
using ::CreateSemaphoreA;
using ::OpenSemaphoreA;
# endif
using ::ReleaseMutex;
using ::ReleaseSemaphore;