Enlightenment CVS committal Author : lordchaos Project : e17 Module : apps/evfs
Dir : e17/apps/evfs/src/lib Modified Files: evfs_commands.c Log Message: * evfs_operation work =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/lib/evfs_commands.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -3 -r1.16 -r1.17 --- evfs_commands.c 18 Jan 2006 10:31:22 -0000 1.16 +++ evfs_commands.c 2 Feb 2006 21:56:29 -0000 1.17 @@ -147,6 +147,22 @@ free(command); } +void evfs_client_operation_respond(evfs_connection* conn, long opid, evfs_operation_response response) { + evfs_command* command = NEW(evfs_command); + //printf("Reading a file..\n"); + command->type = EVFS_CMD_OPERATION_RESPONSE; + + printf("Command type for op response: %d\n", command->type); + command->op = NEW(evfs_operation); + command->op->id = opid; + command->op->response = response; + + printf("Command type for op response: %d\n", command->type); + evfs_write_command(conn, command); + + free(command->op); + free(command); +} ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs