mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
f8002f7e31
Modified Files: Tag: v0_4 HISTORY README i18n.c client/device.c client/setup.c client/setup.h
40 lines
776 B
C++
40 lines
776 B
C++
/*
|
|
* $Id: setup.h,v 1.4.2.1 2009/01/29 07:49:05 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
|