[evolution-ews] Empty declarations of function related to the CreateAttachment operation



commit d101649dda79709d207764254019cae4dfb57c6e
Author: Or Goshen <orx goshen intel com>
Date:   Wed Jun 1 13:03:15 2011 +0300

    Empty declarations of function related to the CreateAttachment operation

 src/server/e-ews-connection.c |   30 ++++++++++++++++++++++++++++++
 src/server/e-ews-connection.h |   23 +++++++++++++++++++++++
 2 files changed, 53 insertions(+), 0 deletions(-)
---
diff --git a/src/server/e-ews-connection.c b/src/server/e-ews-connection.c
index 61a4d56..6afb57f 100644
--- a/src/server/e-ews-connection.c
+++ b/src/server/e-ews-connection.c
@@ -2727,6 +2727,36 @@ e_ews_connection_delete_folder	(EEwsConnection *cnc,
 
 }
 
+void
+e_ews_connection_create_attachments_start (EEwsConnection *cnc,
+                                         gint pri,
+                                         const EwsId *parent,
+                                         const GSList *files,
+                                         GCancellable *cancellable,
+                                         gpointer user_data)
+{
+
+}
+
+GSList *
+e_ews_connection_create_attachments_finish (EEwsConnection *cnc,
+                                         GAsyncResult *result,
+                                         GError **error)
+{
+	return NULL;
+}
+
+GSList *
+e_ews_connection_create_attachments (EEwsConnection *cnc,
+                                     gint pri,
+                                     const EwsId *parent,
+                                     const GSList *files,
+                                     GCancellable *cancellable,
+                                     GError **error)
+{
+	return NULL;
+}
+
 static void get_attachments_response_cb (ESoapParameter *subparam, EwsNode *enode);
 
 void
diff --git a/src/server/e-ews-connection.h b/src/server/e-ews-connection.h
index d5b905c..c9a0426 100644
--- a/src/server/e-ews-connection.h
+++ b/src/server/e-ews-connection.h
@@ -452,6 +452,29 @@ gboolean	e_ews_connection_move_items	(EEwsConnection *cnc,
 						 GSList **items_ret,
 						 GCancellable *cancellable,
 						 GError **error);
+
+/* Create attachemnts and associate them with an item */
+void		e_ews_connection_create_attachments_start
+						(EEwsConnection *cnc,
+						 gint pri,
+						 const EwsId *parent,
+						 const GSList *files,
+						 GCancellable *cancellable,
+						 gpointer user_data);
+
+GSList *	e_ews_connection_create_attachments_finish
+						(EEwsConnection *cnc,
+						 GAsyncResult *result,
+						 GError **error);
+
+GSList *	e_ews_connection_create_attachments
+						(EEwsConnection *cnc,
+						 gint pri,
+						 const EwsId *parent,
+						 const GSList *files,
+						 GCancellable *cancellable,
+						 GError **error);
+
 /* Get attachments items */
 void		e_ews_connection_get_attachments_start
 						(EEwsConnection *cnc,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]