Top |
ThunarSendtoModel *
thunar_sendto_model_get_default (void
);
Returns a reference to the default ThunarSendtoModel
instance. The caller is responsible to free the returned
reference using g_object_unref()
when no longer needed.
GList * thunar_sendto_model_get_matching (ThunarSendtoModel *sendto_model
,GList *files
);
Returns the list of GAppInfos for the "Send To" targets that
support the specified files
.
The returned list is owned by the caller and must be freed when no longer needed, using:
1 |
g_list_free_full (list, g_object_unref); |