Enlightenment CVS committal Author : chaos Project : e17 Module : apps/evfs
Dir : e17/apps/evfs/src/lib Modified Files: evfs_commands.c Log Message: * Add group remove =================================================================== RCS file: /cvs/e/e17/apps/evfs/src/lib/evfs_commands.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -3 -r1.31 -r1.32 --- evfs_commands.c 17 Jul 2006 14:45:09 -0000 1.31 +++ evfs_commands.c 20 Jul 2006 17:49:51 -0000 1.32 @@ -366,3 +366,25 @@ return id; } + +long +evfs_client_metadata_group_file_remove(evfs_connection * conn, evfs_filereference* ref, char* group) +{ + evfs_command *command = evfs_client_command_new(); + long id = command->client_identifier; + + command->type = EVFS_CMD_METADATA_FILE_GROUP_REMOVE; + command->file_command.num_files = 1; + command->file_command.files = malloc(sizeof(evfs_filereference *) * 1); + command->file_command.files[0] = ref; + command->file_command.ref = group; + + + evfs_write_command(conn, command); + + free(command->file_command.files); + free(command); + + return id; + +} ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs