summaryrefslogtreecommitdiffstats
path: root/source/cEvent.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cEvent.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/cEvent.h b/source/cEvent.h
new file mode 100644
index 000000000..b0b1d73be
--- /dev/null
+++ b/source/cEvent.h
@@ -0,0 +1,18 @@
+#pragma once
+
+class cEvent
+{
+public:
+ cEvent( unsigned int a_NumEvents = 1 );
+ ~cEvent();
+
+ void Wait();
+ void Set(unsigned int a_EventNum = 0);
+private:
+ unsigned int m_NumEvents;
+ void* m_Handle; // HANDLE[] pointer
+
+#ifndef _WIN32
+ bool m_bNamed;
+#endif
+};