Enlightenment CVS committal

Author  : lordchaos
Project : e17
Module  : apps/evfs

Dir     : e17/apps/evfs/src/include


Modified Files:
        evfs.h evfs_cleanup.h evfs_client.h evfs_command.h 
        evfs_commands.h evfs_common.h evfs_debug.h evfs_event.h 
        evfs_event_helper.h evfs_filereference.h evfs_io.h 
        evfs_macros.h evfs_misc.h evfs_new.h evfs_operation.h 
        evfs_plugin.h evfs_server.h evfs_server_handle.h 
        evfs_vfolder.h tarpet.h 


Log Message:
Indenting
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs.h,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -3 -r1.40 -r1.41
--- evfs.h      2 Feb 2006 21:56:29 -0000       1.40
+++ evfs.h      3 Feb 2006 23:12:13 -0000       1.41
@@ -9,7 +9,6 @@
 #include <sys/stat.h>
 #include <unistd.h>
 
-
 #include <Ecore.h>
 #include <Ecore_Ipc.h>
 #include <Ecore_File.h>
@@ -18,7 +17,6 @@
 #include <stdlib.h>
 #include <string.h>
 
-
 #define EVFS_IPC_TITLE "evfs_fs"
 #define MAXPATHLEN 512
 #define FALSE 0
@@ -35,20 +33,19 @@
 #define EVFS_FUNCTION_FILE_MOVE "evfs_file_move"
 #define EVFS_FUNCTION_FILE_STAT_GET "evfs_file_stat_get"
 
-
 #include "evfs_operation.h"
 #include "evfs_plugin.h"
 
 typedef enum
 {
-  EVFS_SUCCESS,
-  EVFS_ERROR
+   EVFS_SUCCESS,
+   EVFS_ERROR
 } evfs_status;
 
 typedef enum
 {
-  EVFS_FS_OP_FORCE      = 1,
-  EVFS_FS_OP_RECURSIVE  = 2
+   EVFS_FS_OP_FORCE = 1,
+   EVFS_FS_OP_RECURSIVE = 2
 }
 EfsdFsOps;
 
@@ -64,8 +61,8 @@
 #include "evfs_common.h"
 #include "evfs_vfolder.h"
 
-void evfs_operation_user_dispatch(evfs_client* client, evfs_command* command, 
evfs_operation* op);
-
+void evfs_operation_user_dispatch(evfs_client * client, evfs_command * command,
+                                  evfs_operation * op);
 
 /**
  * ATTRIBUTE_UNUSED:
@@ -83,7 +80,4 @@
 #define __UNUSED__
 #endif
 
-
-
-
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_cleanup.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- evfs_cleanup.h      29 Dec 2005 10:59:00 -0000      1.7
+++ evfs_cleanup.h      3 Feb 2006 23:12:13 -0000       1.8
@@ -1,16 +1,17 @@
 #ifndef __EVFS_CLEANUP_H_
 #define __EVFS_CLEANUP_H_
 
-typedef enum evfs_free_state {
-       EVFS_CLEANUP_FREE_COMMAND,
-       EVFS_CLEANUP_PRESERVE_COMMAND
+typedef enum evfs_free_state
+{
+   EVFS_CLEANUP_FREE_COMMAND,
+   EVFS_CLEANUP_PRESERVE_COMMAND
 } evfs_free_state;
 
-void evfs_cleanup_filereference(evfs_filereference* ref);
-void evfs_cleanup_command(evfs_command* command, int free_command);
-void evfs_cleanup_file_command(evfs_command* command);
-void evfs_cleanup_file_monitor(evfs_file_monitor* mon);
-void evfs_cleanup_event(evfs_event*);
-void evfs_cleanup_file_uri_path(evfs_file_uri_path* path);
+void evfs_cleanup_filereference(evfs_filereference * ref);
+void evfs_cleanup_command(evfs_command * command, int free_command);
+void evfs_cleanup_file_command(evfs_command * command);
+void evfs_cleanup_file_monitor(evfs_file_monitor * mon);
+void evfs_cleanup_event(evfs_event *);
+void evfs_cleanup_file_uri_path(evfs_file_uri_path * path);
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_client.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- evfs_client.h       26 Oct 2005 02:20:01 -0000      1.2
+++ evfs_client.h       3 Feb 2006 23:12:13 -0000       1.3
@@ -4,12 +4,13 @@
 #include "evfs_command.h"
 
 typedef struct evfs_client evfs_client;
-struct evfs_client {
-        Ecore_Ipc_Client* client;
-       unsigned long id;
+struct evfs_client
+{
+   Ecore_Ipc_Client *client;
+   unsigned long id;
 
-       struct evfs_server* server;
-       evfs_command* prog_command;
+   struct evfs_server *server;
+   evfs_command *prog_command;
 };
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_command.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- evfs_command.h      2 Feb 2006 21:56:29 -0000       1.4
+++ evfs_command.h      3 Feb 2006 23:12:13 -0000       1.5
@@ -6,36 +6,36 @@
 /*Command structures*/
 typedef enum evfs_command_type
 {
-  EVFS_CMD_STARTMON_FILE = 1 ,
-  EVFS_CMD_STOPMON_FILE = 2,
-  EVFS_CMD_FILE_COPY = 3,
-  EVFS_CMD_MOVE_FILE = 4,
-  EVFS_CMD_RENAME_FILE = 5,
-  EVFS_CMD_REMOVE_FILE=6,
-  EVFS_CMD_LIST_DIR = 7,
-  EVFS_CMD_FILE_STAT = 8,
-  EVFS_CMD_FILE_OPEN = 9,
-  EVFS_CMD_FILE_READ = 10,
-  EVFS_CMD_FILE_TEST = 11,
-  EVFS_CMD_PING = 12,
-  EVFS_CMD_OPERATION_RESPONSE = 13
-
+   EVFS_CMD_STARTMON_FILE = 1,
+   EVFS_CMD_STOPMON_FILE = 2,
+   EVFS_CMD_FILE_COPY = 3,
+   EVFS_CMD_MOVE_FILE = 4,
+   EVFS_CMD_RENAME_FILE = 5,
+   EVFS_CMD_REMOVE_FILE = 6,
+   EVFS_CMD_LIST_DIR = 7,
+   EVFS_CMD_FILE_STAT = 8,
+   EVFS_CMD_FILE_OPEN = 9,
+   EVFS_CMD_FILE_READ = 10,
+   EVFS_CMD_FILE_TEST = 11,
+   EVFS_CMD_PING = 12,
+   EVFS_CMD_OPERATION_RESPONSE = 13
 }
 evfs_command_type;
 
-
-typedef struct evfs_command_file {
-       evfs_command_type type;
-       int num_files;
-       int extra;
-       evfs_filereference** files;
+typedef struct evfs_command_file
+{
+   evfs_command_type type;
+   int num_files;
+   int extra;
+   evfs_filereference **files;
 }
 evfs_command_file;
 
-typedef struct evfs_command {
-       evfs_command_type type;
-       evfs_command_file file_command;
-       evfs_operation* op;
+typedef struct evfs_command
+{
+   evfs_command_type type;
+   evfs_command_file file_command;
+   evfs_operation *op;
 }
 evfs_command;
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_commands.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- evfs_commands.h     2 Feb 2006 21:56:29 -0000       1.9
+++ evfs_commands.h     3 Feb 2006 23:12:13 -0000       1.10
@@ -1,17 +1,20 @@
 #ifndef __EVFS_COMMANDS_H_
 #define __EVFS_COMMANDS_H_
 
-void evfs_monitor_add(evfs_connection* conn, evfs_filereference* ref);
-void evfs_monitor_remove(evfs_connection* conn, evfs_filereference* ref);
-void evfs_client_file_remove(evfs_connection* conn, evfs_filereference* ref);
-void evfs_client_file_rename(evfs_connection* conn, evfs_filereference* from, 
evfs_filereference* to);
-void evfs_client_file_stat(evfs_connection* conn, evfs_filereference* file);
-void evfs_client_dir_list(evfs_connection* conn, evfs_filereference* file);
-void evfs_client_file_open(evfs_connection* conn, evfs_filereference* file);
-void evfs_client_file_copy(evfs_connection* conn, evfs_filereference* from, 
evfs_filereference* to);
-void evfs_client_file_open(evfs_connection* conn, evfs_filereference* file);
-void evfs_client_file_read(evfs_connection* conn, evfs_filereference* file, 
int read_size);
-void evfs_client_operation_respond(evfs_connection* conn, long opid, 
evfs_operation_response response);
+void evfs_monitor_add(evfs_connection * conn, evfs_filereference * ref);
+void evfs_monitor_remove(evfs_connection * conn, evfs_filereference * ref);
+void evfs_client_file_remove(evfs_connection * conn, evfs_filereference * ref);
+void evfs_client_file_rename(evfs_connection * conn, evfs_filereference * from,
+                             evfs_filereference * to);
+void evfs_client_file_stat(evfs_connection * conn, evfs_filereference * file);
+void evfs_client_dir_list(evfs_connection * conn, evfs_filereference * file);
+void evfs_client_file_open(evfs_connection * conn, evfs_filereference * file);
+void evfs_client_file_copy(evfs_connection * conn, evfs_filereference * from,
+                           evfs_filereference * to);
+void evfs_client_file_open(evfs_connection * conn, evfs_filereference * file);
+void evfs_client_file_read(evfs_connection * conn, evfs_filereference * file,
+                           int read_size);
+void evfs_client_operation_respond(evfs_connection * conn, long opid,
+                                   evfs_operation_response response);
 
 #endif
-
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_common.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- evfs_common.h       26 Oct 2005 02:20:01 -0000      1.1
+++ evfs_common.h       3 Feb 2006 23:12:13 -0000       1.2
@@ -1 +1 @@
-evfs_plugin* evfs_get_plugin_for_uri(evfs_server* server, char* uri_base);
+evfs_plugin *evfs_get_plugin_for_uri(evfs_server * server, char *uri_base);
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_debug.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- evfs_debug.h        15 Aug 2005 08:52:31 -0000      1.1
+++ evfs_debug.h        3 Feb 2006 23:12:13 -0000       1.2
@@ -78,5 +78,4 @@
 #define D_RETURN_(x)   return (x)
 #endif
 
-#endif 
-
+#endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_event.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evfs_event.h        2 Feb 2006 21:56:29 -0000       1.6
+++ evfs_event.h        3 Feb 2006 23:12:13 -0000       1.7
@@ -2,115 +2,125 @@
 #define _EVFS_EVENT_H_
 
 /*Event structures*/
-typedef enum evfs_eventtype {
-       EVFS_EV_REPLY = 0,
-       EVFS_EV_FILE_MONITOR = 1,       
-       EVFS_EV_NOTIFY_ID = 2,
-       EVFS_EV_STAT = 3,
-       EVFS_EV_DIR_LIST = 4,
-       EVFS_EV_FILE_PROGRESS = 5,
-       EVFS_EV_FILE_OPEN= 6,
-       EVFS_EV_FILE_READ = 7,
-       EVFS_EV_PONG    = 8,
-       EVFS_EV_OPERATION = 9,
+typedef enum evfs_eventtype
+{
+   EVFS_EV_REPLY = 0,
+   EVFS_EV_FILE_MONITOR = 1,
+   EVFS_EV_NOTIFY_ID = 2,
+   EVFS_EV_STAT = 3,
+   EVFS_EV_DIR_LIST = 4,
+   EVFS_EV_FILE_PROGRESS = 5,
+   EVFS_EV_FILE_OPEN = 6,
+   EVFS_EV_FILE_READ = 7,
+   EVFS_EV_PONG = 8,
+   EVFS_EV_OPERATION = 9,
 
-       EVFS_EV_ERROR = 100,
-       EVFS_EV_NOT_SUPPORTED = 101
+   EVFS_EV_ERROR = 100,
+   EVFS_EV_NOT_SUPPORTED = 101
 } evfs_eventtype;
 
-typedef enum evfs_eventtype_sub {
-       EVFS_EV_SUB_MONITOR_NOTIFY = 1
+typedef enum evfs_eventtype_sub
+{
+   EVFS_EV_SUB_MONITOR_NOTIFY = 1
 } evfs_eventtype_sub;
 
-typedef enum evfs_eventpart {
-       EVFS_EV_PART_TYPE = 1,
-       EVFS_EV_PART_SUB_TYPE = 2,
-       EVFS_EV_PART_FILE_MONITOR_TYPE = 3,
-       EVFS_EV_PART_FILE_MONITOR_FILENAME = 4,
-       EVFS_EV_PART_FILE_MONITOR_PLUGIN = 5,
-       EVFS_EV_PART_DATA = 6,
-       EVFS_EV_PART_STAT_SIZE = 7,
-       EVFS_EV_PART_FILE_REFERENCE = 8,
-       EVFS_EV_PART_FILE_REFERENCE_USERNAME = 9,
-       EVFS_EV_PART_FILE_REFERENCE_PASSWORD = 10,
-
-       EVFS_EV_PART_PROGRESS = 11,
-
-       EVFS_COMMAND_EXTRA = 12,
-        EVFS_COMMAND_TYPE = 13,
-        EVFS_FILE_REFERENCE = 14,
-       EVFS_FILE_REFERENCE_PASSWORD = 15,
-       EVFS_FILE_REFERENCE_USERNAME = 16,
-       EVFS_FILE_REFERENCE_FD = 17,
-
-       EVFS_EV_PART_OPERATION = 18,
-        EVFS_COMMAND_END = 19,
-       EVFS_COMMAND_PART_OPERATION = 20,
+typedef enum evfs_eventpart
+{
+   EVFS_EV_PART_TYPE = 1,
+   EVFS_EV_PART_SUB_TYPE = 2,
+   EVFS_EV_PART_FILE_MONITOR_TYPE = 3,
+   EVFS_EV_PART_FILE_MONITOR_FILENAME = 4,
+   EVFS_EV_PART_FILE_MONITOR_PLUGIN = 5,
+   EVFS_EV_PART_DATA = 6,
+   EVFS_EV_PART_STAT_SIZE = 7,
+   EVFS_EV_PART_FILE_REFERENCE = 8,
+   EVFS_EV_PART_FILE_REFERENCE_USERNAME = 9,
+   EVFS_EV_PART_FILE_REFERENCE_PASSWORD = 10,
+
+   EVFS_EV_PART_PROGRESS = 11,
+
+   EVFS_COMMAND_EXTRA = 12,
+   EVFS_COMMAND_TYPE = 13,
+   EVFS_FILE_REFERENCE = 14,
+   EVFS_FILE_REFERENCE_PASSWORD = 15,
+   EVFS_FILE_REFERENCE_USERNAME = 16,
+   EVFS_FILE_REFERENCE_FD = 17,
+
+   EVFS_EV_PART_OPERATION = 18,
+   EVFS_COMMAND_END = 19,
+   EVFS_COMMAND_PART_OPERATION = 20,
 
-       
-       EVFS_EV_PART_END = 1000
+   EVFS_EV_PART_END = 1000
 } evfs_eventpart;
 
-typedef enum evfs_file_monitor_type {
-       EVFS_FILE_EV_CREATE,
-       EVFS_FILE_EV_CHANGE,
-       EVFS_FILE_EV_REMOVE,
-       EVFS_FILE_EV_REMOVE_DIRECTORY
+typedef enum evfs_file_monitor_type
+{
+   EVFS_FILE_EV_CREATE,
+   EVFS_FILE_EV_CHANGE,
+   EVFS_FILE_EV_REMOVE,
+   EVFS_FILE_EV_REMOVE_DIRECTORY
 } evfs_file_monitor_type;
 
-
 /*-----------------------------------------------------------------*/
-typedef struct evfs_stat {
-       int st_uid;
-       int st_gid;
-       int st_size;
-       int ist_atime;
-       int ist_mtime;
-       int ist_ctime;
-       
+typedef struct evfs_stat
+{
+   int st_uid;
+   int st_gid;
+   int st_size;
+   int ist_atime;
+   int ist_mtime;
+   int ist_ctime;
+
 } evfs_stat;
 
 typedef struct evfs_event_id_notify evfs_event_id_notify;
-struct evfs_event_id_notify {
+struct evfs_event_id_notify
+{
 
-       int id;
+   int id;
 };
 
 typedef struct evfs_event_file_monitor evfs_event_file_monitor;
-struct evfs_event_file_monitor {
-       
-       evfs_file_monitor_type fileev_type;
-       char* plugin;
-       char* filename;
-       int filename_len;
+struct evfs_event_file_monitor
+{
+
+   evfs_file_monitor_type fileev_type;
+   char *plugin;
+   char *filename;
+   int filename_len;
 };
 
 typedef struct evfs_event_stat evfs_event_stat;
-struct evfs_event_stat {
-       evfs_stat stat_obj;
+struct evfs_event_stat
+{
+   evfs_stat stat_obj;
 };
 
 typedef struct evfs_event_file_list evfs_event_file_list;
-struct evfs_event_file_list {
+struct evfs_event_file_list
+{
 
-       Ecore_List* list; /*A list of evfs_filereference*/      
+   Ecore_List *list;            /*A list of evfs_filereference */
 };
 
-typedef enum evfs_progress_type {
-       EVFS_PROGRESS_TYPE_CONTINUE,
-       EVFS_PROGRESS_TYPE_DONE
+typedef enum evfs_progress_type
+{
+   EVFS_PROGRESS_TYPE_CONTINUE,
+   EVFS_PROGRESS_TYPE_DONE
 } evfs_progress_type;
 
-typedef struct evfs_event_progress {
-       char* file_from;
-       char* file_to;
-       double file_progress;
-       evfs_progress_type type;
+typedef struct evfs_event_progress
+{
+   char *file_from;
+   char *file_to;
+   double file_progress;
+   evfs_progress_type type;
 } evfs_event_progress;
 
-typedef struct evfs_event_data {
-       long size;
-       char* bytes;
+typedef struct evfs_event_data
+{
+   long size;
+   char *bytes;
 } evfs_event_data;
 
 /*typedef struct evfs_event_operation {
@@ -118,20 +128,22 @@
 } evfs_event_operation;*/
 
 //Would be good if this could be a union -> but evfs_command changes size :( */
-typedef struct evfs_event {
-       evfs_eventtype type;
-       evfs_command resp_command;
-
-       evfs_event_file_list file_list;
-       evfs_event_id_notify id_notify;
-       evfs_event_file_monitor file_monitor;
-       evfs_event_stat stat;   
-       evfs_event_progress* progress;
-       evfs_operation* op;
+typedef struct evfs_event
+{
+   evfs_eventtype type;
+   evfs_command resp_command;
+
+   evfs_event_file_list file_list;
+   evfs_event_id_notify id_notify;
+   evfs_event_file_monitor file_monitor;
+   evfs_event_stat stat;
+   evfs_event_progress *progress;
+   evfs_operation *op;
 
-       evfs_event_data data;
+   evfs_event_data data;
 }
 evfs_event;
+
 /*---------------------------------------------------------------------*/
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_event_helper.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- evfs_event_helper.h 31 Jan 2006 06:33:57 -0000      1.12
+++ evfs_event_helper.h 3 Feb 2006 23:12:13 -0000       1.13
@@ -6,12 +6,20 @@
 #include <unistd.h>
 #include "evfs.h"
 
-void evfs_file_monitor_event_create(evfs_client* client, int type, const char* 
pathi, const char* plugin);
-void evfs_stat_event_create(evfs_client* client, evfs_command* command, struct 
stat* stat_obj);
-void evfs_list_dir_event_create(evfs_client* client, evfs_command* command, 
Ecore_List* files);
-void evfs_file_progress_event_create(evfs_client* client, evfs_command* 
event_command, evfs_command* root_command, double progress,evfs_progress_type 
type);
-void evfs_open_event_create(evfs_client* client, evfs_command* command);
-void evfs_read_event_create(evfs_client* client, evfs_command* command, char* 
bytes, long size);
-void evfs_operation_event_create(evfs_client* client, evfs_command* command, 
evfs_operation* op);
+void evfs_file_monitor_event_create(evfs_client * client, int type,
+                                    const char *pathi, const char *plugin);
+void evfs_stat_event_create(evfs_client * client, evfs_command * command,
+                            struct stat *stat_obj);
+void evfs_list_dir_event_create(evfs_client * client, evfs_command * command,
+                                Ecore_List * files);
+void evfs_file_progress_event_create(evfs_client * client,
+                                     evfs_command * event_command,
+                                     evfs_command * root_command,
+                                     double progress, evfs_progress_type type);
+void evfs_open_event_create(evfs_client * client, evfs_command * command);
+void evfs_read_event_create(evfs_client * client, evfs_command * command,
+                            char *bytes, long size);
+void evfs_operation_event_create(evfs_client * client, evfs_command * command,
+                                 evfs_operation * op);
 
 #endif
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_filereference.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- evfs_filereference.h        31 Jan 2006 05:46:52 -0000      1.4
+++ evfs_filereference.h        3 Feb 2006 23:12:13 -0000       1.5
@@ -4,52 +4,55 @@
 #include "evfs_plugin.h"
 
 typedef enum evfs_file_type evfs_file_type;
-enum evfs_file_type {
-       EVFS_FILE_NORMAL = 1,
-       EVFS_FILE_DIRECTORY = 2,
-       EVFS_FILE_LINK = 3,
-       EVFS_FILE_SMB_WORKGROUP = 4,
-       EVFS_FILE_SMB_SERVER = 5,
-       EVFS_FILE_SMB_FILE_SHARE = 6,
-       EVFS_FILE_SMB_PRINTER_SHARE = 7,
-       EVFS_FILE_SMB_COMMS_SHARE = 8,
-       EVFS_FILE_SMB_IPC_SHARE = 9,
+enum evfs_file_type
+{
+   EVFS_FILE_NORMAL = 1,
+   EVFS_FILE_DIRECTORY = 2,
+   EVFS_FILE_LINK = 3,
+   EVFS_FILE_SMB_WORKGROUP = 4,
+   EVFS_FILE_SMB_SERVER = 5,
+   EVFS_FILE_SMB_FILE_SHARE = 6,
+   EVFS_FILE_SMB_PRINTER_SHARE = 7,
+   EVFS_FILE_SMB_COMMS_SHARE = 8,
+   EVFS_FILE_SMB_IPC_SHARE = 9,
 };
 
-typedef enum evfs_uri_token_type {
-       EVFS_URI_TOKEN_KEYWORD,
-       EVFS_URI_TOKEN_OPERATOR,
-       EVFS_URI_TOKEN_STRING
+typedef enum evfs_uri_token_type
+{
+   EVFS_URI_TOKEN_KEYWORD,
+   EVFS_URI_TOKEN_OPERATOR,
+   EVFS_URI_TOKEN_STRING
 } evfs_uri_token_type;
 
-
-typedef struct evfs_uri_token {
-       evfs_uri_token_type type;
-       char* token_s;
+typedef struct evfs_uri_token
+{
+   evfs_uri_token_type type;
+   char *token_s;
 } evfs_uri_token;
 
+typedef struct evfs_filereference
+{
+   char *plugin_uri;
+   struct evfs_plugin *plugin;
+
+   struct evfs_filereference *parent;
+   struct evfs_server *server;  /*The server that spawned/owns this fileref, 
if any */
 
-typedef struct evfs_filereference {
-       char* plugin_uri;
-       struct evfs_plugin* plugin;
-
-       struct evfs_filereference* parent;
-       struct evfs_server* server;     /*The server that spawned/owns this 
fileref, if any*/
-       
-       evfs_file_type file_type;
-       char* path;
+   evfs_file_type file_type;
+   char *path;
 
-       char* username; /*The username/password pair (if any) required to hit 
this file*/
-       char* password;
+   char *username;              /*The username/password pair (if any) required 
to hit this file */
+   char *password;
 
-       int fd; /*The file descriptor (if any) */
-       void* fd_p;
+   int fd;                      /*The file descriptor (if any) */
+   void *fd_p;
 } evfs_filereference;
 
 typedef struct evfs_file_uri_path evfs_file_uri_path;
-struct evfs_file_uri_path {
-       int num_files;
-       evfs_filereference** files;
+struct evfs_file_uri_path
+{
+   int num_files;
+   evfs_filereference **files;
 };
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_io.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- evfs_io.h   15 Jan 2006 12:26:40 -0000      1.9
+++ evfs_io.h   3 Feb 2006 23:12:13 -0000       1.10
@@ -7,25 +7,26 @@
 int evfs_io_initialise();
 
 typedef struct ecore_ipc_message ecore_ipc_message;
-struct ecore_ipc_message {
+struct ecore_ipc_message
+{
 
-        int major;
-        int minor;
-        int ref;
-        int ref_to;
-        int response;
-        void* data;
-        int len;
-
-        Ecore_Ipc_Client* client;
-        Ecore_Ipc_Client* server;
-        int dest; /*1 = client, 2=server*/
+   int major;
+   int minor;
+   int ref;
+   int ref_to;
+   int response;
+   void *data;
+   int len;
+
+   Ecore_Ipc_Client *client;
+   Ecore_Ipc_Client *server;
+   int dest;                    /*1 = client, 2=server */
 };
 
-
-typedef enum EVFS_IO_TYPE {
-       EVFS_COMMAND,
-       EVFS_EVENT
+typedef enum EVFS_IO_TYPE
+{
+   EVFS_COMMAND,
+   EVFS_EVENT
 } EVFS_IO_TYPE;
 
 /*typedef enum EVFS_IO_PART_TYPE {
@@ -34,21 +35,27 @@
        EVFS_COMMAND_END
 } EVFS_IO_PART_TYPE;*/
 
-Eet_Data_Descriptor* evfs_io_filereference_edd_get();
-
-ecore_ipc_message* ecore_ipc_message_new(int major, int minor, int ref, int 
ref_to, int response, void* data, int len);
-int evfs_process_incoming_command(evfs_server* server, evfs_command* command, 
ecore_ipc_message* message);
-void evfs_write_command_end(evfs_connection* conn);
-void evfs_write_command(evfs_connection* conn, evfs_command* command);
-void evfs_write_command_client(evfs_client* client, evfs_command* command);
-void evfs_write_file_command(evfs_connection* conn, evfs_command* command);
-void evfs_write_file_command_client(evfs_client* client, evfs_command* 
command);
-void evfs_event_client_id_notify(evfs_client* client);
-void evfs_write_file_command(evfs_connection* conn, evfs_command* command);
-void evfs_write_ecore_ipc_client_message(Ecore_Ipc_Client* client, 
ecore_ipc_message* msg);
-void evfs_write_ecore_ipc_server_message(Ecore_Ipc_Server* server, 
ecore_ipc_message* msg);
-void evfs_write_event(evfs_client* client, evfs_command* command, evfs_event* 
event);
-int evfs_read_event(evfs_event* event, ecore_ipc_message* msg);
+Eet_Data_Descriptor *evfs_io_filereference_edd_get();
 
+ecore_ipc_message *ecore_ipc_message_new(int major, int minor, int ref,
+                                         int ref_to, int response, void *data,
+                                         int len);
+int evfs_process_incoming_command(evfs_server * server, evfs_command * command,
+                                  ecore_ipc_message * message);
+void evfs_write_command_end(evfs_connection * conn);
+void evfs_write_command(evfs_connection * conn, evfs_command * command);
+void evfs_write_command_client(evfs_client * client, evfs_command * command);
+void evfs_write_file_command(evfs_connection * conn, evfs_command * command);
+void evfs_write_file_command_client(evfs_client * client,
+                                    evfs_command * command);
+void evfs_event_client_id_notify(evfs_client * client);
+void evfs_write_file_command(evfs_connection * conn, evfs_command * command);
+void evfs_write_ecore_ipc_client_message(Ecore_Ipc_Client * client,
+                                         ecore_ipc_message * msg);
+void evfs_write_ecore_ipc_server_message(Ecore_Ipc_Server * server,
+                                         ecore_ipc_message * msg);
+void evfs_write_event(evfs_client * client, evfs_command * command,
+                      evfs_event * event);
+int evfs_read_event(evfs_event * event, ecore_ipc_message * msg);
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_macros.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- evfs_macros.h       11 Oct 2005 05:33:47 -0000      1.5
+++ evfs_macros.h       3 Feb 2006 23:12:13 -0000       1.6
@@ -8,5 +8,4 @@
 #define READDIR(dir, de, de_ptr)  (de_ptr = readdir(dir))
 #define CTIME(time_ptr, buf)      (buf = ctime(time_ptr))
 
-
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_misc.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- evfs_misc.h 23 Jan 2006 10:59:33 -0000      1.3
+++ evfs_misc.h 3 Feb 2006 23:12:13 -0000       1.4
@@ -1,41 +1,42 @@
 #ifndef _EVFS_MISC_H_
 #define _EVFS_MISC_H_
 
-typedef struct evfs_command_client {
-       evfs_client* client;
-       evfs_command* command;
+typedef struct evfs_command_client
+{
+   evfs_client *client;
+   evfs_command *command;
 } evfs_command_client;
 
 /*-----------*/
 
 /*This structure needs more development*/
-typedef struct evfs_auth_cache {
-       char* path;
-       char* username;
-       char* password;
+typedef struct evfs_auth_cache
+{
+   char *path;
+   char *username;
+   char *password;
 } evfs_auth_cache;
 
-
-
-
 typedef struct evfs_file_monitor evfs_file_monitor;
-struct evfs_file_monitor {
-       evfs_client* client;
-       char* monitor_path;
+struct evfs_file_monitor
+{
+   evfs_client *client;
+   char *monitor_path;
 
-       Ecore_File_Monitor *em;
+   Ecore_File_Monitor *em;
 };
 
-Ecore_List* evfs_file_list_sort(Ecore_List* file_list);
-
+Ecore_List *evfs_file_list_sort(Ecore_List * file_list);
 
-void evfs_cleanup_client(evfs_client* client);
-void evfs_disconnect(evfs_connection* connection);
-evfs_connection* evfs_connect(void (*callback_func)(evfs_event*, void*), void 
*obj);
-evfs_file_uri_path* evfs_parse_uri(char* uri);
-void evfs_handle_command(evfs_client* client, evfs_command* command);
-void evfs_handle_monitor_start_command(evfs_client* client, evfs_command* 
command);
-unsigned long evfs_server_get_next_id(evfs_server* serve);
-char* evfs_filereference_to_string(evfs_filereference* ref);
+void evfs_cleanup_client(evfs_client * client);
+void evfs_disconnect(evfs_connection * connection);
+evfs_connection *evfs_connect(void (*callback_func) (evfs_event *, void *),
+                              void *obj);
+evfs_file_uri_path *evfs_parse_uri(char *uri);
+void evfs_handle_command(evfs_client * client, evfs_command * command);
+void evfs_handle_monitor_start_command(evfs_client * client,
+                                       evfs_command * command);
+unsigned long evfs_server_get_next_id(evfs_server * serve);
+char *evfs_filereference_to_string(evfs_filereference * ref);
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_new.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- evfs_new.h  15 Aug 2005 19:53:57 -0000      1.2
+++ evfs_new.h  3 Feb 2006 23:12:13 -0000       1.3
@@ -1,6 +1,6 @@
 #ifndef __EVFS_NEW_H_
 #define __EVFS_NEW_H_
 
-evfs_command* evfs_command_new();
+evfs_command *evfs_command_new();
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_operation.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evfs_operation.h    2 Feb 2006 21:56:29 -0000       1.6
+++ evfs_operation.h    3 Feb 2006 23:12:13 -0000       1.7
@@ -6,36 +6,39 @@
 #ifndef __EVFS_OPERATION_H_
 #define __EVFS_OPERATION_H_
 
-typedef enum evfs_operation_status {
-       EVFS_OPERATION_STATUS_USER_WAIT,
-       EVFS_OPERATION_STATUS_ERROR,
-       EVFS_OPERATION_STATUS_OVERRIDE,
-       EVFS_OPERATION_STATUS_NORMAL
+typedef enum evfs_operation_status
+{
+   EVFS_OPERATION_STATUS_USER_WAIT,
+   EVFS_OPERATION_STATUS_ERROR,
+   EVFS_OPERATION_STATUS_OVERRIDE,
+   EVFS_OPERATION_STATUS_NORMAL
 } evfs_operation_status;
 
-typedef enum evfs_operation_response {
-       EVFS_OPERATION_RESPONSE_AFFIRM,
-       EVFS_OPERATION_RESPONSE_NEGATE,
-       EVFS_OPERATION_RESPONSE_ABORT
+typedef enum evfs_operation_response
+{
+   EVFS_OPERATION_RESPONSE_AFFIRM,
+   EVFS_OPERATION_RESPONSE_NEGATE,
+   EVFS_OPERATION_RESPONSE_ABORT
 } evfs_operation_response;
 
-typedef enum evfs_operation_substatus {
-       EVFS_OPERATION_SUBSTATUS_FILE_OVERWRITE
+typedef enum evfs_operation_substatus
+{
+   EVFS_OPERATION_SUBSTATUS_FILE_OVERWRITE
 } evfs_operation_substatus;
 
 typedef struct evfs_operation evfs_operation;
-struct evfs_operation {
-       long id; /* A unique id for this op*/
-       evfs_operation_status status;
-       evfs_operation_substatus substatus;
-       evfs_operation_response response;
+struct evfs_operation
+{
+   long id;                     /* A unique id for this op */
+   evfs_operation_status status;
+   evfs_operation_substatus substatus;
+   evfs_operation_response response;
 };
 
 void evfs_operation_initialise();
-evfs_operation* evfs_operation_new();
-void evfs_operation_destroy(evfs_operation* op);
-evfs_operation* evfs_operation_get_by_id(long id);
-void evfs_operation_status_set(evfs_operation* op, int status);
-
+evfs_operation *evfs_operation_new();
+void evfs_operation_destroy(evfs_operation * op);
+evfs_operation *evfs_operation_get_by_id(long id);
+void evfs_operation_status_set(evfs_operation * op, int status);
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_plugin.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- evfs_plugin.h       26 Jan 2006 03:33:48 -0000      1.12
+++ evfs_plugin.h       3 Feb 2006 23:12:13 -0000       1.13
@@ -3,38 +3,40 @@
 
 #include "evfs_client.h"
 
-typedef struct evfs_plugin_functions {
-       int (*evfs_client_disconnect)(evfs_client*);
-       int (*evfs_file_remove)(char* path);
-       int (*evfs_monitor_start)(evfs_client* client, evfs_command* command);
-       int (*evfs_monitor_stop)(evfs_client* client, evfs_command* command);
-       int (*evfs_file_rename)(evfs_client* client, evfs_command* command);
-       int (*evfs_file_stat)(evfs_command* command, struct stat* file_stat, 
int);
-       int (*evfs_file_lstat)(evfs_command* command, struct stat* file_stat, 
int);
-       void (*evfs_dir_list)(evfs_client* client, evfs_command* command, 
Ecore_List** directory_list);
-
-       int (*evfs_file_open)(evfs_client* client, evfs_filereference* command);
-       int (*evfs_file_seek)(evfs_filereference* command, long offset, int 
whence);
-       int (*evfs_file_read)(evfs_client* client, evfs_filereference* command, 
char* bytes, long size);
-       int (*evfs_file_write)(evfs_filereference* command, char* bytes, long 
size);
-       int (*evfs_file_close)(evfs_filereference* command);
-       int (*evfs_file_create)(evfs_filereference* file);
+typedef struct evfs_plugin_functions
+{
+   int (*evfs_client_disconnect) (evfs_client *);
+   int (*evfs_file_remove) (char *path);
+   int (*evfs_monitor_start) (evfs_client * client, evfs_command * command);
+   int (*evfs_monitor_stop) (evfs_client * client, evfs_command * command);
+   int (*evfs_file_rename) (evfs_client * client, evfs_command * command);
+   int (*evfs_file_stat) (evfs_command * command, struct stat * file_stat, 
int);
+   int (*evfs_file_lstat) (evfs_command * command, struct stat * file_stat,
+                           int);
+   void (*evfs_dir_list) (evfs_client * client, evfs_command * command,
+                          Ecore_List ** directory_list);
+
+   int (*evfs_file_open) (evfs_client * client, evfs_filereference * command);
+   int (*evfs_file_seek) (evfs_filereference * command, long offset,
+                          int whence);
+   int (*evfs_file_read) (evfs_client * client, evfs_filereference * command,
+                          char *bytes, long size);
+   int (*evfs_file_write) (evfs_filereference * command, char *bytes,
+                           long size);
+   int (*evfs_file_close) (evfs_filereference * command);
+   int (*evfs_file_create) (evfs_filereference * file);
 
-       int (*evfs_file_mkdir)(evfs_filereference* file);
-       
+   int (*evfs_file_mkdir) (evfs_filereference * file);
 
 } evfs_plugin_functions;
 
+typedef struct evfs_plugin
+{
+   evfs_plugin_functions *functions;
 
-typedef struct evfs_plugin {
-       evfs_plugin_functions* functions;
-       
-       void* dl_ref;
-       char* uri;
+   void *dl_ref;
+   char *uri;
 
 } evfs_plugin;
 
-
-
-
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_server.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- evfs_server.h       23 Jan 2006 10:59:33 -0000      1.2
+++ evfs_server.h       3 Feb 2006 23:12:13 -0000       1.3
@@ -2,25 +2,26 @@
 #define __EVFS_SERVER_H_
 
 typedef struct evfs_connection evfs_connection;
-struct evfs_connection {
-       Ecore_Ipc_Server* server;
-       unsigned long id;
-       void (*callback_func)(evfs_event* data, void *obj);
-       evfs_event* prog_event;
-       void *obj;
+struct evfs_connection
+{
+   Ecore_Ipc_Server *server;
+   unsigned long id;
+   void (*callback_func) (evfs_event * data, void *obj);
+   evfs_event *prog_event;
+   void *obj;
 };
 
 typedef struct evfs_server evfs_server;
-struct evfs_server {
-       Ecore_Hash* client_hash;
-       Ecore_Hash* plugin_uri_hash;
-       Ecore_Ipc_Server* ipc_server;
-       unsigned long clientCounter;
+struct evfs_server
+{
+   Ecore_Hash *client_hash;
+   Ecore_Hash *plugin_uri_hash;
+   Ecore_Ipc_Server *ipc_server;
+   unsigned long clientCounter;
 
-       Ecore_List* incoming_command_list;
+   Ecore_List *incoming_command_list;
 
-       int num_clients;
+   int num_clients;
 };
 
-
 #endif
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_server_handle.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- evfs_server_handle.h        2 Feb 2006 21:56:29 -0000       1.13
+++ evfs_server_handle.h        3 Feb 2006 23:12:13 -0000       1.14
@@ -1,15 +1,25 @@
-int evfs_uri_open(evfs_client* client, evfs_filereference* uri);
-int evfs_uri_read(evfs_client* client, evfs_filereference* uri, char* bytes, 
long size);
-int evfs_uri_close(evfs_client* client, evfs_filereference* uri);
+int evfs_uri_open(evfs_client * client, evfs_filereference * uri);
+int evfs_uri_read(evfs_client * client, evfs_filereference * uri, char *bytes,
+                  long size);
+int evfs_uri_close(evfs_client * client, evfs_filereference * uri);
 
-void evfs_handle_monitor_start_command(evfs_client* client, evfs_command* 
command);
-void evfs_handle_monitor_stop_command(evfs_client* client, evfs_command* 
command);
-void evfs_handle_file_remove_command(evfs_client* client, evfs_command* 
command);
-void evfs_handle_file_rename_command(evfs_client* client, evfs_command* 
command);
-void evfs_handle_file_stat_command(evfs_client* client, evfs_command* command);
-void evfs_handle_dir_list_command(evfs_client* client, evfs_command* command);
-void evfs_handle_file_copy(evfs_client* client, evfs_command* command, 
evfs_command* root_command);
-void evfs_handle_file_open_command(evfs_client* client, evfs_command* command);
-void evfs_handle_file_read_command(evfs_client* client, evfs_command* command);
-void evfs_handle_ping_command(evfs_client* client, evfs_command* command);
-void evfs_handle_operation_command (evfs_client* client,evfs_command* command);
+void evfs_handle_monitor_start_command(evfs_client * client,
+                                       evfs_command * command);
+void evfs_handle_monitor_stop_command(evfs_client * client,
+                                      evfs_command * command);
+void evfs_handle_file_remove_command(evfs_client * client,
+                                     evfs_command * command);
+void evfs_handle_file_rename_command(evfs_client * client,
+                                     evfs_command * command);
+void evfs_handle_file_stat_command(evfs_client * client,
+                                   evfs_command * command);
+void evfs_handle_dir_list_command(evfs_client * client, evfs_command * 
command);
+void evfs_handle_file_copy(evfs_client * client, evfs_command * command,
+                           evfs_command * root_command);
+void evfs_handle_file_open_command(evfs_client * client,
+                                   evfs_command * command);
+void evfs_handle_file_read_command(evfs_client * client,
+                                   evfs_command * command);
+void evfs_handle_ping_command(evfs_client * client, evfs_command * command);
+void evfs_handle_operation_command(evfs_client * client,
+                                   evfs_command * command);
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/evfs_vfolder.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- evfs_vfolder.h      15 Jan 2006 12:26:40 -0000      1.2
+++ evfs_vfolder.h      3 Feb 2006 23:12:13 -0000       1.3
@@ -25,11 +25,12 @@
  */
 
 typedef struct evfs_vfolder evfs_vfolder;
-struct evfs_vfolder {
-       Evas_List* bases; /* A list of base URIs where we start our search*/
+struct evfs_vfolder
+{
+   Evas_List *bases;            /* A list of base URIs where we start our 
search */
 };
 
 void evfs_vfolder_initialise();
-evfs_vfolder* evfs_vfolder_new();
+evfs_vfolder *evfs_vfolder_new();
 
 #endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/evfs/src/include/tarpet.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- tarpet.h    26 Oct 2005 02:22:05 -0000      1.1
+++ tarpet.h    3 Feb 2006 23:12:13 -0000       1.2
@@ -13,23 +13,24 @@
  *
  */
 
-struct TARPET_POSIX {
-  char name[100];
-  char mode[8];
-  char uid[8];
-  char gid[8];
-  char size[12];
-  char mtime[12];
-  char checksum[8];
-  char typeflag;
-  char linkname[100];
-  char magic[6];
-  char version[2];
-  char username[32];
-  char groupname[32];
-  char major[8];
-  char minor[8];
-  char extend[155];
+struct TARPET_POSIX
+{
+   char name[100];
+   char mode[8];
+   char uid[8];
+   char gid[8];
+   char size[12];
+   char mtime[12];
+   char checksum[8];
+   char typeflag;
+   char linkname[100];
+   char magic[6];
+   char version[2];
+   char username[32];
+   char groupname[32];
+   char major[8];
+   char minor[8];
+   char extend[155];
 };
 
 #define TARPET_TYPE_REGULAR    '\0'
@@ -72,48 +73,54 @@
  * S_IXOTH
  */
 
-struct TARPET_sparsefile {
-  char padding[12];
-  char numbytes[12];
-};
-
-struct TARPET_GNU_ext {
-  char atime[12];
-  char ctime[12];
-  char offset[12];
-  char realsize[12];
-  char longnames[4];
-  char padding[68];
-  struct TARPET_sparsefile sparse[16];
-  char extend;
-};
-
-struct TARPET_GNU_ext_old {
-  char padding[345];
-  char atime[12];
-  char ctime[12];
-  char longnames[4];
-  char padding2;
-  struct TARPET_sparsefile sparse[4];
-  char extend;
-  char realsize[12];
-};
-
-struct TARPET_GNU_sparseheader {
-  struct TARPET_sparsefile sparse[21];
-  char extend;
-};
-
-struct TARPET_rawdata {
-  char data[512];
-};
-
-union TARPET_block {
-  struct TARPET_POSIX p;
-  struct TARPET_GNU_ext gnu;
-  struct TARPET_GNU_ext_old gnu_old;
-  struct TARPET_GNU_sparseheader sparse;
-  struct TARPET_rawdata raw;
+struct TARPET_sparsefile
+{
+   char padding[12];
+   char numbytes[12];
+};
+
+struct TARPET_GNU_ext
+{
+   char atime[12];
+   char ctime[12];
+   char offset[12];
+   char realsize[12];
+   char longnames[4];
+   char padding[68];
+   struct TARPET_sparsefile sparse[16];
+   char extend;
+};
+
+struct TARPET_GNU_ext_old
+{
+   char padding[345];
+   char atime[12];
+   char ctime[12];
+   char longnames[4];
+   char padding2;
+   struct TARPET_sparsefile sparse[4];
+   char extend;
+   char realsize[12];
+};
+
+struct TARPET_GNU_sparseheader
+{
+   struct TARPET_sparsefile sparse[21];
+   char extend;
+};
+
+struct TARPET_rawdata
+{
+   char data[512];
+};
+
+union TARPET_block
+{
+   struct TARPET_POSIX p;
+   struct TARPET_GNU_ext gnu;
+   struct TARPET_GNU_ext_old gnu_old;
+   struct TARPET_GNU_sparseheader sparse;
+   struct TARPET_rawdata raw;
 };
 
 #endif




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

Reply via email to