]> git.tdb.fi Git - libs/core.git/commitdiff
Remove the now-unused types.h
authorMikko Rasa <tdb@tdb.fi>
Sat, 28 May 2011 10:15:40 +0000 (13:15 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sat, 28 May 2011 10:15:40 +0000 (13:15 +0300)
source/core/types.h [deleted file]

diff --git a/source/core/types.h b/source/core/types.h
deleted file mode 100644 (file)
index 1bd865d..0000000
+++ /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 <windows.h>
-#else
-#include <pthread.h>
-#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