summaryrefslogtreecommitdiffstats
path: root/source/OSSupport/Event.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-09-05 15:22:16 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-06 17:50:18 +0200
commita80be25c920a657b7be596ee9f42d2d2f8f0c5dc (patch)
treedfb4d74621fc06768d4712dba4a297e6cc0e1b78 /source/OSSupport/Event.h
parentFixed the Win nightbuild script naming ini files badly (thx Tigerw). (diff)
downloadcuberite-a80be25c920a657b7be596ee9f42d2d2f8f0c5dc.tar
cuberite-a80be25c920a657b7be596ee9f42d2d2f8f0c5dc.tar.gz
cuberite-a80be25c920a657b7be596ee9f42d2d2f8f0c5dc.tar.bz2
cuberite-a80be25c920a657b7be596ee9f42d2d2f8f0c5dc.tar.lz
cuberite-a80be25c920a657b7be596ee9f42d2d2f8f0c5dc.tar.xz
cuberite-a80be25c920a657b7be596ee9f42d2d2f8f0c5dc.tar.zst
cuberite-a80be25c920a657b7be596ee9f42d2d2f8f0c5dc.zip
Diffstat (limited to '')
-rw-r--r--source/OSSupport/Event.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/source/OSSupport/Event.h b/source/OSSupport/Event.h
index 803d73b7e..71f418c0c 100644
--- a/source/OSSupport/Event.h
+++ b/source/OSSupport/Event.h
@@ -19,22 +19,12 @@
class cEvent
{
public:
- enum eWaitResult
- {
- wrSignalled,
- wrTimeout,
- wrError,
- } ;
-
cEvent(void);
~cEvent();
void Wait(void);
void Set (void);
- /// Waits for the semaphore with a timeout
- eWaitResult Wait(int a_TimeoutMilliSec);
-
private:
#ifdef _WIN32