Method

GPluginManagerfind_plugins

Declaration [src]

GSList*
gplugin_manager_find_plugins (
  GPluginManager* manager,
  const gchar* id
)

Description [src]

Finds all plugins matching id.

Parameters

id const gchar*
 

Id string of the plugin to find.

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

Return value

Returns: A list of GPluginPlugin
 

A GSList of referenced GPluginPlugins matching id. Call g_slist_free_full() with a DestroyNotify of g_object_unref() on the returned value when you’re done with it.

 The caller of the method takes ownership of the data, and is responsible for freeing it.