blob: bdfb123fda1fcf61f9af667675cf4c2fe501fcdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* See the README file for copyright information and how to reach the author.
*/
#include <vdr/interface.h>
#include <vdr/status.h>
#include "myreplaycontrol.h"
#include "mymenusetup.h"
myReplayControl::~myReplayControl()
{
cRemote::CallPlugin("extrecmenu");
}
eOSState myReplayControl::ProcessKey(eKeys Key)
{
if(Key==kBack)
return osEnd;
return cReplayControl::ProcessKey(Key);
}
|