diff options
author | Maniac <na@na.na> | 2015-07-03 22:29:41 +0200 |
---|---|---|
committer | Maniac <na@na.na> | 2015-07-03 22:29:41 +0200 |
commit | da407909879f82c15f786bda3fedda0cae892100 (patch) | |
tree | 143c2b842028c38e8f7facfe576567039459afd9 /playmenu.h | |
download | vdr-plugin-mpv-0.0.4.tar.gz vdr-plugin-mpv-0.0.4.tar.bz2 |
import 0.0.40.0.4
Diffstat (limited to 'playmenu.h')
-rw-r--r-- | playmenu.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/playmenu.h b/playmenu.h new file mode 100644 index 0000000..4844585 --- /dev/null +++ b/playmenu.h @@ -0,0 +1,25 @@ +////////////////////////////////////////////////////////////////////////////// +/// /// +/// This file is part of the VDR mpv plugin and licensed under AGPLv3 /// +/// /// +/// See the README file for copyright information /// +/// /// +////////////////////////////////////////////////////////////////////////////// + +#ifndef __MPV_BROWSER_H +#define __MPV_BROWSER_H + +#include <vdr/plugin.h> + +class cPlayMenu:public cOsdMenu +{ + private: + public: + cPlayMenu(const char *, int = 0, int = 0, int = 0, int = 0, int = 0); + virtual ~ cPlayMenu(); + virtual eOSState ProcessKey(eKeys); + int PlayFile(const char *Filename); +}; + +#endif + |