diff options
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 + |