From d72d1b872b91a864f453fa4dc209561e6b279748 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 28 May 2011 13:15:40 +0300 Subject: [PATCH] Remove the now-unused types.h --- source/core/types.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 source/core/types.h diff --git a/source/core/types.h b/source/core/types.h deleted file mode 100644 index 1bd865d..0000000 --- a/source/core/types.h +++ /dev/null @@ -1,31 +0,0 @@ -/* $Id$ - -This file is part of libmspcore -Copyright © 2006 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_CORE_TYPES_H_ -#define MSP_CORE_TYPES_H_ - -#ifdef WIN32 -#include -#else -#include -#endif - -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 - -#endif -- 2.43.0