impr: Remove dependencies on curl, mbedTLS and GLFW in the SDK

This commit is contained in:
WerWolv
2025-02-03 20:49:58 +01:00
parent 0140e24822
commit 0a6681ccb7
15 changed files with 383 additions and 231 deletions

View File

@@ -49,15 +49,6 @@ namespace hex {
}
void HttpRequest::checkProxyErrors() { }
int HttpRequest::progressCallback(void *contents, curl_off_t dlTotal, curl_off_t dlNow, curl_off_t ulTotal, curl_off_t ulNow) {
std::ignore = contents;
std::ignore = dlTotal;
std::ignore = dlNow;
std::ignore = ulTotal;
std::ignore = ulNow;
return -1;
}
}
#endif