libplatform/time/time.h Source File
MP4v2 Home
Documentation
API Reference
libplatform
time
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
mp4v2::platform::time::getLocalTimeSeconds
seconds_t getLocalTimeSeconds()
Get local-time in seconds.
mp4v2::platform::time::seconds_t
int64_t seconds_t
type used to represent seconds
Definition:
time.h:12
mp4v2::platform::time::getLocalTimeMilliseconds
milliseconds_t getLocalTimeMilliseconds()
Get local-time in milliseconds.
mp4v2::platform::time::milliseconds_t
int64_t milliseconds_t
type used to represent milliseconds
Definition:
time.h:9