mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
dc41eecffd
configurable in plugin setup (fixes #552)
42 lines
805 B
C++
42 lines
805 B
C++
/*
|
|
* $Id: setup.h,v 1.7 2010/06/08 05:55:17 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 HideMenuEntry;
|
|
int MinPriority;
|
|
int MaxPriority;
|
|
#if APIVERSNUM >= 10700
|
|
int NumProvidedSystems;
|
|
#endif
|
|
};
|
|
|
|
extern cStreamdevClientSetup StreamdevClientSetup;
|
|
|
|
class cStreamdevClientMenuSetupPage: public cMenuSetupPage {
|
|
private:
|
|
cStreamdevClientSetup m_NewSetup;
|
|
|
|
protected:
|
|
virtual void Store(void);
|
|
|
|
public:
|
|
cStreamdevClientMenuSetupPage(void);
|
|
virtual ~cStreamdevClientMenuSetupPage();
|
|
};
|
|
|
|
#endif // VDR_STREAMDEV_SETUPCLIENT_H
|