webview_set_html

Function webview_set_html 

Source
pub unsafe extern "C" fn webview_set_html(
    w: webview_t,
    html: *const c_char,
) -> webview_error_t
Expand description

Load HTML content into the webview.

Example: @code{.c} webview_set_html(w, “

Hello

”); @endcode

@param w The webview instance. @param html HTML content.