]> git.tdb.fi Git - libs/core.git/blob - source/time/rawtime.h
fb6a383fb4b4575a51bead802150bb394c85ace4
[libs/core.git] / source / time / rawtime.h
1 /* $Id$
2
3 This file is part of libmspcore     
4 Copyright © 2006,2008  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_TIME_RAWTIME_H_
9 #define MSP_TIME_RAWTIME_H_
10
11 #ifndef WIN32
12 #include <sys/time.h>
13 #endif
14
15 namespace Msp {
16 namespace Time {
17
18 #ifdef MSVC
19 typedef __int64 RawTime;
20 #else
21 typedef long long RawTime;
22 #endif
23
24 #ifndef WIN32
25 // Internal conversion utilities, not intended for public use
26 timeval rawtime_to_timeval(RawTime);
27 timespec rawtime_to_timespec(RawTime);
28 #endif
29
30 } // namespace Time
31 } // namespace Msp
32
33 #endif