|
From: Enlightenment C. <no...@cv...> - 2006-06-24 10:02:22
|
Enlightenment CVS committal
Author : chaos
Project : e17
Module : apps/evfs
Dir : e17/apps/evfs/src/include
Modified Files:
evfs_command.h evfs_event.h evfs_io.h
Log Message:
* Code for the comms layer of metadata set/get
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/include/evfs_command.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- evfs_command.h 10 Jun 2006 02:35:58 -0000 1.10
+++ evfs_command.h 24 Jun 2006 15:01:50 -0000 1.11
@@ -21,7 +21,9 @@
EVFS_CMD_PING = 13,
EVFS_CMD_OPERATION_RESPONSE = 14,
EVFS_CMD_DIRECTORY_CREATE = 15,
- EVFS_CMD_METADATA_RETRIEVE = 16
+ EVFS_CMD_METADATA_RETRIEVE = 16,
+ EVFS_CMD_METADATA_FILE_SET = 17,
+ EVFS_CMD_METADATA_FILE_GET = 18
}
evfs_command_type;
@@ -30,6 +32,8 @@
evfs_command_type type;
int num_files;
int extra;
+ char* ref;
+
evfs_filereference **files;
}
evfs_command_file;
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/include/evfs_event.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- evfs_event.h 21 Apr 2006 15:10:16 -0000 1.13
+++ evfs_event.h 24 Jun 2006 15:01:50 -0000 1.14
@@ -49,6 +49,7 @@
EVFS_COMMAND_END = 20,
EVFS_COMMAND_PART_OPERATION = 21,
EVFS_COMMAND_CLIENTID = 22,
+ EVFS_COMMAND_PART_FILECOMMAND_REF = 23,
EVFS_EV_PART_END = 1000
} evfs_eventpart;
===================================================================
RCS file: /cvs/e/e17/apps/evfs/src/include/evfs_io.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- evfs_io.h 22 Apr 2006 03:09:19 -0000 1.11
+++ evfs_io.h 24 Jun 2006 15:01:50 -0000 1.12
@@ -61,6 +61,11 @@
evfs_event * event);
int evfs_read_event(evfs_event * event, ecore_ipc_message * msg);
+void
+evfs_write_command_end(evfs_connection * conn);
+void
+evfs_write_command_end_client(evfs_client * client);
+
#endif
|