aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mail-remote/e-corba-utils.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2007-12-17 21:22:59 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-12-17 21:22:59 +0800
commit70aeb47914023a4cb9931cd7d45dd00d64aae288 (patch)
tree197e7a414051560719e7ad6242627220838bff39 /plugins/mail-remote/e-corba-utils.h
parent8bdb85463f20be52906aad05ce7e09ffb929e331 (diff)
downloadgsoc2013-evolution-70aeb47914023a4cb9931cd7d45dd00d64aae288.tar
gsoc2013-evolution-70aeb47914023a4cb9931cd7d45dd00d64aae288.tar.gz
gsoc2013-evolution-70aeb47914023a4cb9931cd7d45dd00d64aae288.tar.bz2
gsoc2013-evolution-70aeb47914023a4cb9931cd7d45dd00d64aae288.tar.lz
gsoc2013-evolution-70aeb47914023a4cb9931cd7d45dd00d64aae288.tar.xz
gsoc2013-evolution-70aeb47914023a4cb9931cd7d45dd00d64aae288.tar.zst
gsoc2013-evolution-70aeb47914023a4cb9931cd7d45dd00d64aae288.zip
Actually remove the mail-remote plugin, like the ChangeLog says.
svn path=/trunk/; revision=34721
Diffstat (limited to 'plugins/mail-remote/e-corba-utils.h')
-rw-r--r--plugins/mail-remote/e-corba-utils.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/plugins/mail-remote/e-corba-utils.h b/plugins/mail-remote/e-corba-utils.h
deleted file mode 100644
index 43fef0c474..0000000000
--- a/plugins/mail-remote/e-corba-utils.h
+++ /dev/null
@@ -1,44 +0,0 @@
-
-#ifndef _E_CORBA_UTILS_H
-#define _E_CORBA_UTILS_H
-
-#include "Evolution-DataServer-Mail.h"
-
-/* Debug, warning debug, error debug, global for whole plugin to make it easier to enable/disable */
-#define d(x)
-#define w(x)
-#define e(x)
-
-struct _EvolutionMailStore;
-struct _EvolutionMailFolder;
-struct _CamelMessageInfo;
-struct _CamelStream;
-struct _CamelMimeMessage;
-struct _CamelException;
-
-void e_mail_property_set_string(Evolution_Mail_Property *prop, const char *name, const char *val);
-void e_mail_property_set_null(Evolution_Mail_Property *prop, const char *name);
-
-void e_mail_storeinfo_set_store(Evolution_Mail_StoreInfo *si, struct _EvolutionMailStore *store);
-void e_mail_folderinfo_set_folder(Evolution_Mail_FolderInfo *fi, struct _EvolutionMailFolder *emf);
-
-void e_mail_messageinfo_set_message(Evolution_Mail_MessageInfo *mi, struct _CamelMessageInfo *info);
-struct _CamelMessageInfo *e_mail_messageinfoset_to_info(const Evolution_Mail_MessageInfoSet *mi);
-
-struct _CamelMimeMessage *e_messagestream_to_message(const Evolution_Mail_MessageStream in, CORBA_Environment *ev);
-Evolution_Mail_MessageStream e_messagestream_from_message(struct _CamelMimeMessage *msg, CORBA_Environment *ev);
-
-struct _EDList;
-
-typedef void (*EMailListenerChanged)(CORBA_Object, CORBA_Object, void *changes, CORBA_Environment *);
-
-void e_mail_listener_add(struct _EDList *list, CORBA_Object listener);
-gboolean e_mail_listener_remove(struct _EDList *list, CORBA_Object listener);
-gboolean e_mail_listener_emit(struct _EDList *list, EMailListenerChanged emit, CORBA_Object source, void *changes);
-void e_mail_listener_free(struct _EDList *list);
-
-/* raise an exception */
-void e_mail_exception_set(CORBA_Environment *ev, Evolution_Mail_ErrorType id, const char *desc);
-void e_mail_exception_xfer_camel(CORBA_Environment *ev, struct _CamelException *ex);
-
-#endif /* !_E_CORBA_UTILS_H */