X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftime%2Ftypes.h;h=89c740557ca7c95bf327698a2563a147438ab7cf;hb=5b0c36c9c6c9c30f1eb42186fed7acc7e99faf3e;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