X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Frawtime.h;h=1af7956f25c09a5bb0103cb3e8f1b08b3094fbef;hp=4831645adb60f8d0ea401b5bc4486dbb10ad6d1b;hb=be8ea216d23bf36bdfb2d3e302638782575fc136;hpb=c7afef88380ebebc8c2b04e48664d73281ec8848 diff --git a/source/time/rawtime.h b/source/time/rawtime.h index 4831645..1af7956 100644 --- a/source/time/rawtime.h +++ b/source/time/rawtime.h @@ -1,24 +1,12 @@ #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