]> git.tdb.fi Git - libs/core.git/blob - source/time/rawtime.h
76524509990986fd55b0eaa78a9cd366bee95c00
[libs/core.git] / source / time / rawtime.h
1 #ifndef MSP_TIME_RAWTIME_H_
2 #define MSP_TIME_RAWTIME_H_
3
4 namespace Msp {
5 namespace Time {
6
7 #ifdef MSVC
8 typedef __int64 RawTime;
9 #else
10 typedef long long RawTime;
11 #endif
12
13 } // namespace Time
14 } // namespace Msp
15
16 #endif