aboutsummaryrefslogtreecommitdiff
path: root/include/DownloadUtils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/DownloadUtils.hpp')
-rw-r--r--include/DownloadUtils.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/DownloadUtils.hpp b/include/DownloadUtils.hpp
index 0a68069..964e74b 100644
--- a/include/DownloadUtils.hpp
+++ b/include/DownloadUtils.hpp
@@ -27,5 +27,7 @@ namespace QuickMedia {
DownloadResult download_to_string_cache(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, DownloadErrorHandler error_handler = nullptr, Path cache_path = "");
// Note: This function saves the content to the file atomically
DownloadResult download_to_file(const std::string &url, const std::string &destination_filepath, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false);
+ // Returns false if there was an error trying to create the download process
+ bool download_async_gui(const std::string &url, bool use_youtube_dl, bool no_video);
DownloadResult download_to_json(const std::string &url, rapidjson::Document &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, bool fail_on_error = true);
} \ No newline at end of file