blob: c93d643d7b5c51c6c6bf6c546c2df2999fb116ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* based on common.h,v 1.2 2007/06/18 17:58:52 lordjaxom
*
* version by Midas
*
*/
#ifndef VDR_BLOCK_COMMON_H
#define VDR_BLOCK_COMMON_H
#include <stdint.h>
#include <vdr/tools.h>
#if VDRVERSNUM >= 10318
inline uint64_t time_ms() { return cTimeMs::Now(); }
#endif
#endif // VDR_BLOCK_COMMON_H
|