aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/onedrive/onedrivestorage.h
diff options
context:
space:
mode:
authorAlexander Tkachev2016-05-30 18:13:31 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commitaa987e5c52899bfafff4f1f84479a67761569109 (patch)
tree468f076020836c51647b7708558832193cffceab /backends/cloud/onedrive/onedrivestorage.h
parenta19fc52c329fdb0611eee7aedfb20fb0d1b9269c (diff)
downloadscummvm-rg350-aa987e5c52899bfafff4f1f84479a67761569109.tar.gz
scummvm-rg350-aa987e5c52899bfafff4f1f84479a67761569109.tar.bz2
scummvm-rg350-aa987e5c52899bfafff4f1f84479a67761569109.zip
CLOUD: Add ListDirectoryStatus struct
It contains flags to indicate whether Request was interrupted or failed, so dependent Requests may see that list is incomplete.
Diffstat (limited to 'backends/cloud/onedrive/onedrivestorage.h')
-rw-r--r--backends/cloud/onedrive/onedrivestorage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/cloud/onedrive/onedrivestorage.h b/backends/cloud/onedrive/onedrivestorage.h
index 7028667819..55d039653a 100644
--- a/backends/cloud/onedrive/onedrivestorage.h
+++ b/backends/cloud/onedrive/onedrivestorage.h
@@ -72,10 +72,10 @@ public:
/** Public Cloud API comes down there. */
- /** Returns Common::Array<StorageFile>. */
- virtual Networking::Request *listDirectory(Common::String path, FileArrayCallback callback, bool recursive = false);
+ /** Returns ListDirectoryStatus struct with list of files. */
+ virtual Networking::Request *listDirectory(Common::String path, ListDirectoryCallback callback, bool recursive = false);
- /** Calls the callback when finished. */
+ /** Returns UploadStatus struct with info about uploaded file. */
virtual Networking::Request *upload(Common::String path, Common::SeekableReadStream *contents, UploadCallback callback) { return nullptr; } //TODO
virtual Networking::Request *upload(Common::String remotePath, Common::String localPath, UploadCallback callback) { return nullptr; }