This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Easy-IRL-Stream/src/help-dialog.hpp
T
Nils cb3c837f0b Add SSL error handling and user notification dialog
- Implemented a new function `ssl_error_dialog_show` to display SSL connection errors to users in both English and German.
- Integrated SSL error handling in API calls and webhook functionality, ensuring users are informed of potential connection issues.
- Updated relevant files to include the new error handling logic and dialog display.
2026-04-06 19:17:11 +02:00

17 lines
411 B
C++

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void help_dialog_show(const char *local_ip, const char *external_ip,
const char *version, const char *locale);
void update_dialog_show(const char *new_version, const char *locale);
void forced_update_show(const char *new_version, const char *locale);
void ssl_error_dialog_show(const char *detail, const char *locale);
#ifdef __cplusplus
}
#endif