diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-06-04 02:08:12 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-06-04 19:24:02 +0300 |
commit | db3f7eafa05636a3079037109d3d21514b25a8bb (patch) | |
tree | 43e2bacb284a3fa6e96e0c7579d1230dd5753dde /indra/newview/llviewermenufile.h | |
parent | 29e1089ee62dba6265e8c2381fc266d0bff75143 (diff) |
viewer#1588 Upload directly to Specified Inventory Folder
Diffstat (limited to 'indra/newview/llviewermenufile.h')
-rw-r--r-- | indra/newview/llviewermenufile.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llviewermenufile.h b/indra/newview/llviewermenufile.h index 1acb701d50..f58b7b42c1 100644 --- a/indra/newview/llviewermenufile.h +++ b/indra/newview/llviewermenufile.h @@ -72,6 +72,16 @@ void assign_defaults_and_show_upload_message( const std::string& display_name, std::string& description); +void upload_single_file( + const std::vector<std::string>& filenames, + LLFilePicker::ELoadFilter type, + const LLUUID& dest); + +void upload_bulk( + const std::vector<std::string>& filenames, + LLFilePicker::ELoadFilter type, + const LLUUID& dest); + //consider moving all file pickers below to more suitable place class LLFilePickerThread : public LLThread { //multi-threaded file picker (runs system specific file picker in background and calls "notify" from main thread) |