diff options
Diffstat (limited to '')
-rw-r--r-- | source/cSemaphore.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/source/cSemaphore.h b/source/cSemaphore.h index 42966b410..fbe8907f1 100644 --- a/source/cSemaphore.h +++ b/source/cSemaphore.h @@ -1,17 +1,17 @@ -#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
-};
+#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 +}; |