blob: bd086603591ba993d73f3c9434cf4c018b0d744a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* tools.h: History plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __HISTORY_TOOLS_H_
#define __HISTORY_TOOLS_H_
#include <vdr/tools.h>
bool isimage(const char *text);
bool isvideo(const char *text);
bool ismusic(const char *text);
#endif // __HISTORY_TOOLS_H_
|