![]() |
![]() |
![]() |
![]() |
gchar **
gegl_list_operations (guint *n_operations_p
);
An alphabetically sorted array of available operation names. This excludes any compat-name registered by operations. The list should be freed with g_free after use. --- gchar **operations; guint n_operations; gint i;
operations = gegl_list_operations (&n_operations);
g_print ("Available operations:\n");
for (i=0; i < n_operations; i++)
{
g_print ("\ts
\n", operations[i]);
}
g_free (operations);.
[transfer container][array length=n_operations_p]
void gegl_operation_class_register_name (GeglOperationClass *klass
,const gchar *name
,const gboolean is_compat
);