From 4db0876f45533d3b55ee79df2d2bc78b789b5a28 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 13 Apr 2021 09:09:30 +0200 Subject: Make search fuzzy, fix soundcloud next song when hitting user Also some other misc changes --- include/DownloadUtils.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/DownloadUtils.hpp') diff --git a/include/DownloadUtils.hpp b/include/DownloadUtils.hpp index 40ec12a..dd74f50 100644 --- a/include/DownloadUtils.hpp +++ b/include/DownloadUtils.hpp @@ -22,7 +22,9 @@ namespace QuickMedia { using DownloadErrorHandler = std::function; DownloadResult download_to_string(const std::string &url, std::string &result, const std::vector &additional_args, bool use_browser_useragent = false, bool fail_on_error = true); + // Note: This function saves the content to the file atomically DownloadResult download_to_string_cache(const std::string &url, std::string &result, const std::vector &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 &additional_args, bool use_browser_useragent = false); DownloadResult download_to_json(const std::string &url, rapidjson::Document &result, const std::vector &additional_args, bool use_browser_useragent = false, bool fail_on_error = true); } \ No newline at end of file -- cgit v1.2.3