]> git.tdb.fi Git - libs/core.git/blob - source/time/rawtime.h
Drop copyright and license notices from source files
[libs/core.git] / source / time / rawtime.h
1 #ifndef MSP_TIME_RAWTIME_H_
2 #define MSP_TIME_RAWTIME_H_
3
4 #ifndef WIN32
5 #include <sys/time.h>
6 #endif
7
8 namespace Msp {
9 namespace Time {
10
11 #ifdef MSVC
12 typedef __int64 RawTime;
13 #else
14 typedef long long RawTime;
15 #endif
16
17 #ifndef WIN32
18 // Internal conversion utilities, not intended for public use
19 timeval rawtime_to_timeval(RawTime);
20 timespec rawtime_to_timespec(RawTime);
21 #endif
22
23 } // namespace Time
24 } // namespace Msp
25
26 #endif