X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Frawtime.h;h=1af7956f25c09a5bb0103cb3e8f1b08b3094fbef;hp=fb6a383fb4b4575a51bead802150bb394c85ace4;hb=be8ea216d23bf36bdfb2d3e302638782575fc136;hpb=f5951e7166dfd7028b95d7c780406f65afc5cdfc diff --git a/source/time/rawtime.h b/source/time/rawtime.h index fb6a383..1af7956 100644 --- a/source/time/rawtime.h +++ b/source/time/rawtime.h @@ -1,31 +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 -#endif +#include namespace Msp { namespace Time { -#ifdef MSVC -typedef __int64 RawTime; -#else -typedef long long RawTime; -#endif - -#ifndef WIN32 -// Internal conversion utilities, not intended for public use -timeval rawtime_to_timeval(RawTime); -timespec rawtime_to_timespec(RawTime); -#endif +typedef Int64 RawTime; } // namespace Time } // namespace Msp