X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Ftypes.h;h=885c5231b81fde3e363a93af16f3b67940fcf8f1;hp=729668978d1323aa7d9924eb3f04a3d30b2adb70;hb=fe77fc6b869a71bf94d501a0762579f4ddbc5094;hpb=e1ea831a640fba534e7e42e399f04cdf681ef8d3 diff --git a/source/core/types.h b/source/core/types.h index 7296689..885c523 100644 --- a/source/core/types.h +++ b/source/core/types.h @@ -1,5 +1,5 @@ /* -This file is part of libmspframework +This file is part of libmspcore Copyright © 2006 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -17,9 +17,11 @@ namespace Msp { #ifdef WIN32 typedef HANDLE ThreadHandle; typedef HANDLE MutexHandle; +typedef HANDLE SemaphoreHandle; #else typedef pthread_t ThreadHandle; typedef pthread_mutex_t MutexHandle; +typedef pthread_cond_t SemaphoreHandle; #endif } // namespace Msp