diff options
| author | Midas <vdrportal_midas@gmx.de> | 2010-04-22 01:06:40 +0200 |
|---|---|---|
| committer | Midas <vdrportal_midas@gmx.de> | 2010-04-22 01:06:40 +0200 |
| commit | 4921cf32c8bda089a21dc4a14ce191ed477f80ff (patch) | |
| tree | ff9debb648949a2ad43ee7759fb667fb03a78b73 /block/common.h | |
| download | vdr-plugin-block-4921cf32c8bda089a21dc4a14ce191ed477f80ff.tar.gz vdr-plugin-block-4921cf32c8bda089a21dc4a14ce191ed477f80ff.tar.bz2 | |
Initial release. Version 0.0.1b. Fork of the taste plugin 0.0.2d by LordJaxom.
Patches for the taste plugin by tomg and mapovi were added permanently to the
source of the block plugin. For more information, feature list und bugfixes
read HISTORY and README please.
Diffstat (limited to 'block/common.h')
| -rw-r--r-- | block/common.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/block/common.h b/block/common.h new file mode 100644 index 0000000..c93d643 --- /dev/null +++ b/block/common.h @@ -0,0 +1,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 |
