Enlightenment CVS committal

Author  : lordchaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/lib


Modified Files:
        evfs_commands.c 


Log Message:
* Extrapolated server side command handling functions
* Monitor stop stubs

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/lib/evfs_commands.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- evfs_commands.c     16 Aug 2005 07:31:40 -0000      1.4
+++ evfs_commands.c     16 Aug 2005 08:11:34 -0000      1.5
@@ -17,3 +17,20 @@
 
        free(command);  
 }
+
+void evfs_monitor_remove(evfs_connection* conn, evfs_filereference* ref) {
+       evfs_command* command = NEW(evfs_command);
+       
+       /*printf("Adding a monitor on: '%s' using '%s'\n", ref->path, 
ref->plugin_uri);*/
+
+       command->type = EVFS_CMD_STOPMON_FILE;
+       command->file_command.num_files = 1;
+       command->file_command.files = malloc(sizeof(evfs_filereference*));
+       command->file_command.files[0] = ref;
+
+       evfs_write_command(conn, command);
+
+       
+
+       free(command);  
+}




-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to