Added missing returns and removed some whitespace in c++ interface

This commit is contained in:
Shaun 2025-01-16 14:49:49 +00:00
parent c9abbc9cdb
commit b6f70527be

View File

@ -125,9 +125,9 @@ namespace webui {
}
// Run JavaScript without waiting for the response. Single client.
void script_client(const std::string_view script, unsigned int timeout,
bool script_client(const std::string_view script, unsigned int timeout,
char* buffer, size_t buffer_length) {
webui_script_client(this, script.data(), timeout, buffer, buffer_length);
return webui_script_client(this, script.data(), timeout, buffer, buffer_length);
}
// Run JavaScript without waiting for the response. Single client.
@ -280,8 +280,8 @@ namespace webui {
// Set a custom web-server network port to be used by WebUI. This can be useful to determine the HTTP
// link of `webui.js` in case you are trying to use WebUI with an external web-server like NGNIX
void set_port(size_t port) const {
webui_set_port(webui_window, port);
bool set_port(size_t port) const {
return webui_set_port(webui_window, port);
}
// Set window position
@ -443,9 +443,9 @@ namespace webui {
// Set the SSL/TLS certificate and the private key content, both in PEM format.
// This works only with `webui-2-secure` library. If set empty WebUI will generate a self-signed certificate.
inline void set_tls_certificate(const std::string_view certificate_pem,
inline bool set_tls_certificate(const std::string_view certificate_pem,
const std::string_view private_key_pem) {
webui_set_tls_certificate(certificate_pem.data(), private_key_pem.data());
return webui_set_tls_certificate(certificate_pem.data(), private_key_pem.data());
}
// Safely free a buffer allocated by WebUI, for example when using webui_encode().