info about shared memory, calls, events and log files.

This commit is contained in:
2026-03-27 00:15:23 +01:00
parent 8357960a6b
commit 8349b65a83
17 changed files with 205 additions and 78 deletions

View File

@@ -34,10 +34,16 @@ int main(int argc, char *argv[])
int wv = rkt_webview_create(context, 0);
rkt_data_t *d = rkt_webview_info();
rkt_webview_free_data(d);
rkt_webview_move(wv, 100, 200);
rkt_webview_resize(wv, 800, 600);
rkt_webview_set_url(wv, "https://wikipedia.org");
d = rkt_webview_info();
rkt_webview_free_data(d);
while(rkt_webview_events_waiting() > 0) {
rkt_data_t *d = rkt_webview_get_event();
rkt_webview_free_data(d);
@@ -47,8 +53,13 @@ int main(int argc, char *argv[])
#else
sleep(10);
#endif
d = rkt_webview_info();
rkt_webview_free_data(d);
rkt_webview_close(wv);
d = rkt_webview_info();
rkt_webview_free_data(d);
rkt_webview_cleanup();
}