mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
ebacf759ab
Modified Files: HISTORY README streamdev-client.c streamdev-client.h client/device.c client/setup.c client/setup.h client/socket.c client/socket.h po/de_DE.po po/fi_FI.po po/fr_FR.po po/it_IT.po po/lt_LT.po po/ru_RU.po po/sk_SK.po
39 lines
748 B
C++
39 lines
748 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;
|
|
};
|
|
|
|
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
|