libplatform/time/time.h Source File
time.h
1 #ifndef MP4V2_PLATFORM_TIME_TIME_H
2 #define MP4V2_PLATFORM_TIME_TIME_H
3 
6 namespace mp4v2 { namespace platform { namespace time {
7 
9 typedef int64_t milliseconds_t;
10 
12 typedef int64_t seconds_t;
13 
26 MP4V2_EXPORT milliseconds_t getLocalTimeMilliseconds();
27 
40 MP4V2_EXPORT seconds_t getLocalTimeSeconds();
41 
45 
46 }}} // namespace mp4v2::platform::time
47 
48 #endif // MP4V2_PLATFORM_TIME_TIME_H
milliseconds_t getLocalTimeMilliseconds()
Get local-time in milliseconds.
int64_t seconds_t
type used to represent seconds
Definition: time.h:12
seconds_t getLocalTimeSeconds()
Get local-time in seconds.
Definition: File.h:4
int64_t milliseconds_t
type used to represent milliseconds
Definition: time.h:9