mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Update - Add user-defined command line parameter
This commit is contained in:
parent
5fd3f15ac7
commit
31c0264a04
@ -331,15 +331,14 @@ WEBUI_EXPORT bool webui_show_wv(size_t window, const char* content);
|
||||
WEBUI_EXPORT void webui_set_kiosk(size_t window, bool status);
|
||||
|
||||
/**
|
||||
* @brief Add user-defined command line parameters.
|
||||
* @brief Add a user-defined web browser's CLI parameters.
|
||||
*
|
||||
* @param window The window number
|
||||
* @param paramsLen Command line parameters length
|
||||
* @param params Command line parameters
|
||||
*
|
||||
* @example webui_set_custom_parameters(myWindow, "--remote-debugging-port=9222");
|
||||
*/
|
||||
WEBUI_EXPORT void webui_set_custom_parameters(size_t window, int paramsLen, char *params);
|
||||
WEBUI_EXPORT void webui_set_custom_parameters(size_t window, char *params);
|
||||
|
||||
/**
|
||||
* @brief Set the window with high-contrast support. Useful when you want to
|
||||
|
10
src/webui.c
10
src/webui.c
@ -999,7 +999,7 @@ void webui_set_kiosk(size_t window, bool status) {
|
||||
win->kiosk_mode = status;
|
||||
}
|
||||
|
||||
void webui_set_custom_parameters(size_t window, int paramsLen, char *params) {
|
||||
void webui_set_custom_parameters(size_t window, char* params) {
|
||||
|
||||
#ifdef WEBUI_LOG
|
||||
printf("[User] webui_set_custom_parameters([%zu], [%s])\n", window, params);
|
||||
@ -1013,8 +1013,12 @@ void webui_set_custom_parameters(size_t window, int paramsLen, char *params) {
|
||||
return;
|
||||
_webui_window_t* win = _webui.wins[window];
|
||||
|
||||
win->custom_parameters = (char *)_webui_malloc(paramsLen + 1);
|
||||
WEBUI_STR_COPY_STATIC(win->custom_parameters, paramsLen, params);
|
||||
size_t len = _webui_strlen(params);
|
||||
if (len < 1)
|
||||
return;
|
||||
|
||||
win->custom_parameters = (char*)_webui_malloc(len);
|
||||
WEBUI_STR_COPY_STATIC(win->custom_parameters, len, params);
|
||||
}
|
||||
|
||||
void webui_set_high_contrast(size_t window, bool status) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user