X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftime%2Ftypes.h;h=89c740557ca7c95bf327698a2563a147438ab7cf;hb=48c4fc071cb96dc7ed1da8f89894ad5c27eaa48c;hp=0d09ac8c7718af0831d6a4169e250126b633bdba;hpb=3d80163d0e1f4bacd4c4033f92819e4ef2605a71;p=libs%2Fcore.git diff --git a/source/time/types.h b/source/time/types.h index 0d09ac8..89c7405 100644 --- a/source/time/types.h +++ b/source/time/types.h @@ -1,12 +1,25 @@ +/* $Id$ + +This file is part of libmspcore +Copyright © 2006,2008 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef MSP_TIME_TYPES_H_ #define MSP_TIME_TYPES_H_ +#ifndef WIN32 #include +#endif namespace Msp { namespace Time { +#ifdef WIN32 +typedef __int64 RawTime; +#else typedef int64_t RawTime; +#endif } // namespace Time } // namespace Msp