]> git.tdb.fi Git - libs/core.git/blob - source/time/types.h
Add support for time zones
[libs/core.git] / source / time / types.h
1 #ifndef MSP_TIME_TYPES_H_
2 #define MSP_TIME_TYPES_H_
3
4 #ifndef WIN32
5 #include <stdint.h>
6 #endif
7
8 namespace Msp {
9 namespace Time {
10
11 #ifdef WIN32
12 typedef __int64 RawTime;
13 #else
14 typedef int64_t RawTime;
15 #endif
16
17 } // namespace Time
18 } // namespace Msp
19
20 #endif