Enlightenment CVS committal

Author  : lordchaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/common


Modified Files:
        evfs_io.c 


Log Message:
Added file remove, implemented function pointers for callbacks on plugin init.
TODO: Doc this before it gets too complicated

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/common/evfs_io.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evfs_io.c   16 Aug 2005 09:00:20 -0000      1.5
+++ evfs_io.c   19 Aug 2005 12:15:11 -0000      1.6
@@ -93,6 +93,7 @@
        switch (command->type) {
                case EVFS_CMD_STOPMON_FILE:
                case EVFS_CMD_STARTMON_FILE:
+               case EVFS_CMD_REMOVE_FILE:
                        evfs_write_file_command(conn, command);
                        break;
        }
@@ -106,7 +107,8 @@
 void evfs_write_file_command(evfs_connection* conn, evfs_command* command) {
        int i;
        char uri[1024];
-       
+
+       printf("Writing a command...\n");
 
        /*Write the command type structure*/
        evfs_write_ecore_ipc_server_message(conn->server, 
ecore_ipc_message_new(EVFS_COMMAND, EVFS_COMMAND_TYPE, 0,0,0,&command->type, 
sizeof(evfs_command_type)));
@@ -155,7 +157,10 @@
                        break;
                }
 
-               case EVFS_COMMAND_END:
+               case EVFS_COMMAND_END:  
+                        /*TODO cleanp ref event*/
+                        
+                                         
                         return TRUE;
                         break;
        }




-------------------------------------------------------
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