|
From: Enlightenment C. <no...@cv...> - 2007-08-14 10:25:37
|
Enlightenment CVS committal
Author : chaos
Project : e17
Module : apps/evfs
Dir : e17/apps/evfs/src/include
Modified Files:
evfs_event.h
Log Message:
Final EVFS commit before IO/EET reorg
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/include/evfs_event.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- evfs_event.h 13 Aug 2007 03:05:21 -0000 1.19
+++ evfs_event.h 14 Aug 2007 10:25:35 -0000 1.20
@@ -123,6 +123,12 @@
EVFS_PROGRESS_TYPE_DONE
} evfs_progress_type;
+typedef enum EvfsEventReturnCode
+{
+ EVFS_RETURN_CODE_ERROR = 1,
+ EVFS_RETURN_CODE_SUCCESS = 0
+} EvfsEventReturnCode;
+
typedef struct evfs_event_progress
{
char *file_from;
@@ -155,6 +161,7 @@
{
evfs_eventtype type;
evfs_command resp_command;
+ EvfsEventReturnCode retCode;
evfs_event_file_list file_list;
evfs_event_id_notify id_notify;
|