]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/rawtime.h
Rename time/types.h to rawtime.h
[libs/core.git] / source / time / rawtime.h
diff --git a/source/time/rawtime.h b/source/time/rawtime.h
new file mode 100644 (file)
index 0000000..afa3c94
--- /dev/null
@@ -0,0 +1,27 @@
+/* $Id$
+
+This file is part of libmspcore     
+Copyright © 2006,2008  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#ifndef MSP_TIME_RAWTIME_H_
+#define MSP_TIME_RAWTIME_H_
+
+#ifndef WIN32
+#include <stdint.h>
+#endif
+
+namespace Msp {
+namespace Time {
+
+#ifdef WIN32
+typedef __int64 RawTime;
+#else
+typedef int64_t RawTime;
+#endif
+
+} // namespace Time
+} // namespace Msp
+
+#endif