Enlightenment CVS committal Author : chaos Project : e17 Module : apps/evfs
Dir : e17/apps/evfs/src/lib Modified Files: evfs_commands.c Log Message: Vfolder work =================================================================== RCS file: /cvs/e/e17/apps/evfs/src/lib/evfs_commands.c,v retrieving revision 1.44 retrieving revision 1.45 diff -u -3 -r1.44 -r1.45 --- evfs_commands.c 21 Aug 2007 13:11:15 -0000 1.44 +++ evfs_commands.c 24 Aug 2007 00:49:47 -0000 1.45 @@ -350,6 +350,28 @@ } +long +evfs_client_file_tag_add(evfs_connection * conn, EvfsFilereference* file, char* key ) +{ + evfs_command *command = evfs_client_command_new(); + long id = command->client_identifier; + + command->type = EVFS_CMD_FILE_TAG_ADD; + + command->file_command->files = evas_list_append( command->file_command->files, file); + command->file_command->ref = key; + + + evfs_write_command(conn, command); + + evas_list_free(command->file_command->files); + free(command); + + + return id; + +} + long evfs_client_metadata_groups_get(evfs_connection * conn) { ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs