diff options
Diffstat (limited to 'module/remote/ttypes.py')
-rw-r--r-- | module/remote/ttypes.py | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/module/remote/ttypes.py b/module/remote/ttypes.py index 0412c3709..36b56d961 100644 --- a/module/remote/ttypes.py +++ b/module/remote/ttypes.py @@ -40,14 +40,17 @@ class FileStatus: class Input: NA = 0 Text = 1 - Textbox = 2 - Password = 3 - Bool = 4 - Click = 5 - Select = 6 - Multiple = 7 - List = 8 - Table = 9 + Int = 2 + File = 3 + Folder = 4 + Textbox = 5 + Password = 6 + Bool = 7 + Click = 8 + Select = 9 + Multiple = 10 + List = 11 + Table = 12 class MediaType: All = 0 @@ -438,6 +441,8 @@ class Iface(object): pass def getUserPlugins(self): pass + def getWSAddress(self): + pass def hasAddonHandler(self, plugin, func): pass def isInteractionWaiting(self, mode): |