mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
0e0b4b587d
Modified Files: HISTORY README client/device.c client/setup.c client/setup.h po/de_DE.po po/fi_FI.po po/fr_FR.po po/it_IT.po po/ru_RU.po
40 lines
772 B
C++
40 lines
772 B
C++
/*
|
|
* $Id: setup.h,v 1.5 2009/01/29 07:48:59 schmirl Exp $
|
|
*/
|
|
|
|
#ifndef VDR_STREAMDEV_SETUPCLIENT_H
|
|
#define VDR_STREAMDEV_SETUPCLIENT_H
|
|
|
|
#include "common.h"
|
|
|
|
struct cStreamdevClientSetup {
|
|
cStreamdevClientSetup(void);
|
|
|
|
bool SetupParse(const char *Name, const char *Value);
|
|
|
|
int StartClient;
|
|
char RemoteIp[20];
|
|
int RemotePort;
|
|
int StreamFilters;
|
|
int SyncEPG;
|
|
int HideMenuEntry;
|
|
int MinPriority;
|
|
int MaxPriority;
|
|
};
|
|
|
|
extern cStreamdevClientSetup StreamdevClientSetup;
|
|
|
|
class cStreamdevClientMenuSetupPage: public cStreamdevMenuSetupPage {
|
|
private:
|
|
cStreamdevClientSetup m_NewSetup;
|
|
|
|
protected:
|
|
virtual void Store(void);
|
|
|
|
public:
|
|
cStreamdevClientMenuSetupPage(void);
|
|
virtual ~cStreamdevClientMenuSetupPage();
|
|
};
|
|
|
|
#endif // VDR_STREAMDEV_SETUPCLIENT_H
|