blob: 7b709441b1293e2d6f602f7f6f1b5aaf7acbfcfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef __PINSETUTMENU_H_
#define __PINSETUTMENU_H_
//***************************************************************************
// Includes
//***************************************************************************
#include <vdr/plugin.h>
#include "pin.h"
//***************************************************************************
// Pin Setup Menu
//***************************************************************************
class PinSetupMenu : public cMenuSetupPage
{
public:
PinSetupMenu();
~PinSetupMenu();
protected:
void Store(void);
// data
char pinCode[cPinPlugin::sizePinCode+TB];
int skipChannelSilent;
int pinResetTime;
int autoMenuOpen;
int autoProtectionMode;
int hidePinCode;
int hideProtectedMenus;
int hideProtectedPlugins;
int hideProtectedRecordings;
};
//***************************************************************************
#endif // __PINSETUTMENU_H_
|