]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/rawtime.h
Additional adjustments for Poller
[libs/core.git] / source / time / rawtime.h
index afa3c949a08221088fbe5965c708c6b3f6a4e294..1af7956f25c09a5bb0103cb3e8f1b08b3094fbef 100644 (file)
@@ -1,25 +1,12 @@
-/* $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
+#include <msp/core/inttypes.h>
 
 namespace Msp {
 namespace Time {
 
-#ifdef WIN32
-typedef __int64 RawTime;
-#else
-typedef int64_t RawTime;
-#endif
+typedef Int64 RawTime;
 
 } // namespace Time
 } // namespace Msp