summaryrefslogtreecommitdiff
path: root/wx+/http.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2016-10-29 11:41:53 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2016-10-29 11:41:53 +0200
commit7302bb4484d517a72cdffbd13ec7a9f2324cde01 (patch)
tree17d2964c6768d49510206836a496fb1802a63e08 /wx+/http.h
parent8.5 (diff)
downloadFreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.tar.gz
FreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.tar.bz2
FreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.zip
8.6
Diffstat (limited to 'wx+/http.h')
-rw-r--r--wx+/http.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/http.h b/wx+/http.h
index e3942e67..febe8f24 100644
--- a/wx+/http.h
+++ b/wx+/http.h
@@ -17,8 +17,8 @@ namespace zen
Windows: WinInet-based => may be called from worker thread
Linux: wxWidgets-based => don't call from worker thread
*/
-std::string sendHttpPost(const std::wstring& url, const std::wstring& userAgent, const std::vector<std::pair<std::string, std::string>>& postParams); //throw FileError
-std::string sendHttpGet (const std::wstring& url, const std::wstring& userAgent); //throw FileError
+std::string sendHttpPost(const std::wstring& url, const std::wstring& userAgent, const std::vector<std::pair<std::string, std::string>>& postParams); //throw SysError
+std::string sendHttpGet (const std::wstring& url, const std::wstring& userAgent); //throw SysError
bool internetIsAlive(); //noexcept
}
bgstack15