1 #ifndef __GETTIME_H__
2 #define __GETTIME_H__
3 
4 #include <stdint.h>
5 
6 /* Returns the amount of milliseconds elapsed since the UNIX epoch. Works on both
7  * windows and linux. */
8 uint64_t GetTimeMs64();
9 
10 #endif
11