Function

GPluginManagerForeachFunc

Declaration

void
(* GPluginManagerForeachFunc) (
  const gchar* id,
  GSList* plugins,
  gpointer data
)

Description [src]

A callback function for gplugin_manager_foreach().

Parameters

id

Type: const gchar*

The id of the plugin.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
plugins

Type: A list of GPluginPlugin*

A GSList of each plugin that has the id id.

The data is owned by the caller of the function.
data

Type: gpointer

User data passed to gplugin_manager_foreach().

The argument can be NULL.
The data is owned by the caller of the function.