diff options
author | chriszero <zerov83@gmail.com> | 2015-04-05 13:31:04 +0200 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-04-05 13:31:04 +0200 |
commit | f7f62b7ff1f12c1563a04560ad87d2f92a3e0af9 (patch) | |
tree | 4dd38d637ad2d5427c93a8d8d695e91c11df33d4 /Config.h | |
parent | 21ee9e67ff7029c099c9fd772d3dc3e23c955199 (diff) | |
download | vdr-plugin-plex-f7f62b7ff1f12c1563a04560ad87d2f92a3e0af9.tar.gz vdr-plugin-plex-f7f62b7ff1f12c1563a04560ad87d2f92a3e0af9.tar.bz2 |
More Skindesigner support.
Define a custom server
Diffstat (limited to 'Config.h')
-rw-r--r-- | Config.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -26,10 +26,13 @@ public: std::string s_username; std::string s_password; + std::string s_serverHost; + int ServerPort; bool HideMainMenuEntry; bool UseCustomTranscodeProfile; bool UsePlexAccount; + bool UseConfiguredServer; std::string GetUUID(); void SetUUID(const char* uuid); @@ -59,6 +62,9 @@ class cMyMenuSetupPage:public cMenuSetupPage char Username[STRING_SIZE]; char Password[STRING_SIZE]; char Uuid[STRING_SIZE]; + char ServerHost[STRING_SIZE]; + int ServerPort; + int UseConfiguredServer; int HideMainMenuEntry; int UseCustomTranscodeProfile; int UsePlexAccount; |