Class (GI Struct)

WebKit-6.0WebKitImageListAbstractSince 2.54

Represents a set of related images.

The list supports iterating over each Image:

g_autoptr(WebKitImageList) list = webkit_favicon_database_get_page_icons_finish(database, result, NULL);
for (gsize i = 0; i < webkit_image_list_get_length(list); i++) {
WebKitImage *image = webkit_image_list_get(list, i);
// Do something with "image".
}

Image lists can be obtained as the result of webkit_favicon_database_get_page_icons.

2.54

Index
  • Atomically releases a reference on the given image_list.

    If the reference was the last, the resources associated with the image_list are freed.

    This function is MT-safe and may be called from any thread.

    Returns void

    2.54