Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/lib


Modified Files:
        evfs_commands.c 


Log Message:
Ok, lotsa changes:
* Abstracted out the plugin architecture.  Two plugins types now: Filesystem, 
and metadata provider
* Added audio tagger metadata provider (based on e_taggerd by CodeWarrior).  Be 
warned - metadata provider file type is hardcoded to go to this plugin for now 
- more later, including libextract)
* A few bug fixes, whatever ended up in this commit cycle

===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/lib/evfs_commands.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- evfs_commands.c     5 Apr 2006 05:43:04 -0000       1.26
+++ evfs_commands.c     21 Apr 2006 15:10:16 -0000      1.27
@@ -231,3 +231,28 @@
 
    return id;
 }
+
+
+long 
+evfs_client_metadata_retrieve(evfs_connection * conn, evfs_filereference* file 
)
+{
+   evfs_command *command = evfs_client_command_new();
+   long id = command->client_identifier;
+   
+   command->type = EVFS_CMD_METADATA_RETRIEVE;
+
+   command->file_command.num_files = 1;
+   command->file_command.files = malloc(sizeof(evfs_filereference *) * 1);
+   command->file_command.files[0] = file;
+
+
+   evfs_write_command(conn, command);
+
+   free(command->file_command.files);
+   free(command);
+
+
+   return id;
+
+}
+




-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to