mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
9c60fb4e42
- changed externremux.sh's default location to VDRCONFDIR/plugins/streamdev - added sample externremux.sh from http://www.vdr-wiki.de/ - stop providing channels after client has been disabled at runtime - added logging of the client device's card index - changed default suspend mode to "Always suspended" - added "Hide Mainmenu Entry" setup option on client
38 lines
734 B
C++
38 lines
734 B
C++
/*
|
|
* $Id: setup.h,v 1.4 2008/04/07 14:50:32 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;
|
|
};
|
|
|
|
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
|