Host: Purge C format string error overloads

This commit is contained in:
Stenzek
2024-07-19 13:45:33 +10:00
parent 00ccea84b8
commit ca2a8f1e1f
3 changed files with 1 additions and 22 deletions

View File

@ -31,11 +31,9 @@ void ReportFatalError(std::string_view title, std::string_view message);
/// Displays an asynchronous error on the UI thread, i.e. doesn't block the caller.
void ReportErrorAsync(std::string_view title, std::string_view message);
void ReportFormattedErrorAsync(std::string_view title, const char* format, ...);
/// Displays a synchronous confirmation on the UI thread, i.e. blocks the caller.
bool ConfirmMessage(std::string_view title, std::string_view message);
bool ConfirmFormattedMessage(std::string_view title, const char* format, ...);
/// Returns the user agent to use for HTTP requests.
std::string GetHTTPUserAgent();