aboutsummaryrefslogtreecommitdiff
path: root/src/gettext.h
diff options
context:
space:
mode:
authorJeff Huang <s8321414@chakraos.org>2015-11-02 15:04:08 +0100
committerWeblate <noreply@weblate.org>2015-11-08 18:40:23 +0100
commit2203e2889dc1c20ff63c3822fe51f4f823843cf1 (patch)
tree23c7fa77b334751258be8a8c34a4fb22fb04c30a /src/gettext.h
parentdbb46f4da44cb8d287b157abc309e14e9b08d451 (diff)
downloadminetest-2203e2889dc1c20ff63c3822fe51f4f823843cf1.tar.gz
minetest-2203e2889dc1c20ff63c3822fe51f4f823843cf1.tar.bz2
minetest-2203e2889dc1c20ff63c3822fe51f4f823843cf1.zip
Translated using Weblate (Chinese (Taiwan))
Currently translated at 56.3% (424 of 753 strings)
Diffstat (limited to 'src/gettext.h')
0 files changed, 0 insertions, 0 deletions
/span> #endif #include "util/basic_macros.h" class Semaphore { public: Semaphore(int val=0); ~Semaphore(); void post(unsigned int num=1); void wait(); bool wait(unsigned int time_ms); private: #if defined(WIN32) HANDLE semaphore; #elif defined(__MACH__) && defined(__APPLE__) semaphore_t semaphore; #else sem_t semaphore; #endif DISABLE_CLASS_COPY(Semaphore); }; #endif