This commit is contained in:
2026-04-08 16:39:23 +02:00
parent a5378e32b9
commit 7468a16d63
7 changed files with 43 additions and 0 deletions

View File

@@ -474,6 +474,11 @@ result_t rkt_webview_set_title(rktwebview_t wv, const char *title)
CMDRES(CMD_SET_TITLE, wv, "title", title)
}
result_t rkt_webview_set_icon(rktwebview_t wv, const char *icon_file)
{
CMDRES(CMD_SET_ICON, wv, "icon", icon_file)
}
result_t rkt_webview_choose_dir(rktwebview_t w, const char *title, const char *base_dir)
{
CMDRES2(CMD_CHOOSE_DIR, w, "title", title, "base_dir", base_dir)
@@ -591,3 +596,5 @@ rkt_data_t *rkt_webview_info()
return d;
}