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