diff options
Diffstat (limited to 'source/cSemaphore.h')
-rw-r--r-- | source/cSemaphore.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/source/cSemaphore.h b/source/cSemaphore.h deleted file mode 100644 index fbe8907f1..000000000 --- a/source/cSemaphore.h +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -class cSemaphore -{ -public: - cSemaphore( unsigned int a_MaxCount, unsigned int a_InitialCount = 0 ); - ~cSemaphore(); - - void Wait(); - void Signal(); -private: - void* m_Handle; // HANDLE pointer - -#ifndef _WIN32 - bool m_bNamed; -#endif -}; |