diff options
Diffstat (limited to 'pyload/remote/apitypes.py')
-rw-r--r-- | pyload/remote/apitypes.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/pyload/remote/apitypes.py b/pyload/remote/apitypes.py index 07e04d5de..555deca9f 100644 --- a/pyload/remote/apitypes.py +++ b/pyload/remote/apitypes.py @@ -34,10 +34,12 @@ class DownloadStatus: TempOffline = 11 Aborted = 12 NotPossible = 13 - Decrypting = 14 - Processing = 15 - Custom = 16 - Unknown = 17 + Missing = 14 + FileMismatch = 15 + Decrypting = 16 + Processing = 17 + Custom = 18 + Unknown = 19 class FileStatus: Ok = 0 @@ -489,6 +491,10 @@ class Iface(object): pass def removeAccount(self, account): pass + def removeFiles(self, fids): + pass + def removePackages(self, pids): + pass def removeUser(self, uid): pass def restart(self): |