|
From: Enlightenment C. <no...@cv...> - 2007-08-30 13:08:43
|
Enlightenment CVS committal
Author : chaos
Project : e17
Module : proto/entropy
Dir : e17/proto/entropy/src
Modified Files:
plugin_helper.c
Log Message:
More efolder work
===================================================================
RCS file: /cvs/e/e17/proto/entropy/src/plugin_helper.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- plugin_helper.c 13 Aug 2007 03:08:08 -0000 1.34
+++ plugin_helper.c 30 Aug 2007 13:07:02 -0000 1.35
@@ -342,6 +342,17 @@
} else return NULL;
}
+void entropy_plugin_filesystem_metadata_all_get(entropy_gui_component_instance* instance)
+{
+ Entropy_Plugin_File* plugin =
+ ENTROPY_PLUGIN_FILE(entropy_plugins_type_get_first (ENTROPY_PLUGIN_BACKEND_FILE,
+ ENTROPY_PLUGIN_SUB_TYPE_ALL));
+
+ if (plugin) {
+ return (*plugin->misc_functions.meta_all_get)(instance);
+ }
+}
+
void entropy_plugin_filesystem_file_group_add(entropy_generic_file* file, char* group)
{
Entropy_Plugin_File* plugin =
|