evolution r36177 - branches/mail-dbus-remoting/mail
- From: psankar svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution r36177 - branches/mail-dbus-remoting/mail
- Date: Thu, 28 Aug 2008 18:45:54 +0000 (UTC)
Author: psankar
Date: Thu Aug 28 18:45:54 2008
New Revision: 36177
URL: http://svn.gnome.org/viewvc/evolution?rev=36177&view=rev
Log:
Supress undefined functions by creating their skeletons.
Modified:
branches/mail-dbus-remoting/mail/camel-folder-remote.c
branches/mail-dbus-remoting/mail/camel-folder-remote.h
branches/mail-dbus-remoting/mail/camel-store-remote.c
branches/mail-dbus-remoting/mail/camel-store-remote.h
branches/mail-dbus-remoting/mail/mail-ops.c
Modified: branches/mail-dbus-remoting/mail/camel-folder-remote.c
==============================================================================
--- branches/mail-dbus-remoting/mail/camel-folder-remote.c (original)
+++ branches/mail-dbus-remoting/mail/camel-folder-remote.c Thu Aug 28 18:45:54 2008
@@ -159,7 +159,7 @@
if (!ret) {
g_warning ("Error: Get parent store from camel folder remote: %s\n", error.message);
- return;
+ return NULL;
}
rstore = (CamelObjectRemote *) g_hash_table_lookup (store_rhash, store_hash_key);
@@ -167,3 +167,14 @@
d(printf("Got parent store from camel folder remotely\n"));
return rstore;
}
+
+guint32 camel_folder_remote_get_folder_flags (CamelFolderRemote *folder)
+{
+ abort ();
+ return 0;
+}
+
+const char *camel_folder_remote_get_name (CamelFolderRemote *folder)
+{
+ return "";
+}
Modified: branches/mail-dbus-remoting/mail/camel-folder-remote.h
==============================================================================
--- branches/mail-dbus-remoting/mail/camel-folder-remote.h (original)
+++ branches/mail-dbus-remoting/mail/camel-folder-remote.h Thu Aug 28 18:45:54 2008
@@ -21,4 +21,6 @@
const char *camel_folder_remote_get_name (CamelFolderRemote *folder);
+guint32 camel_folder_remote_get_folder_flags (CamelFolderRemote *folder);
+
#endif
Modified: branches/mail-dbus-remoting/mail/camel-store-remote.c
==============================================================================
--- branches/mail-dbus-remoting/mail/camel-store-remote.c (original)
+++ branches/mail-dbus-remoting/mail/camel-store-remote.c Thu Aug 28 18:45:54 2008
@@ -469,3 +469,15 @@
/* Implement it.*/
return CAMEL_SERVICE_DISCONNECTED;
}
+
+CamelFolderInfo * camel_store_create_folder_remote (CamelStoreRemote *store, char *parent, char * name, CamelException *ex)
+{
+ return NULL;
+}
+
+int
+camel_store_get_state_remote (CamelStoreRemote *store)
+{
+ abort ();
+ return -1;
+}
Modified: branches/mail-dbus-remoting/mail/camel-store-remote.h
==============================================================================
--- branches/mail-dbus-remoting/mail/camel-store-remote.h (original)
+++ branches/mail-dbus-remoting/mail/camel-store-remote.h Thu Aug 28 18:45:54 2008
@@ -56,4 +56,9 @@
int camel_store_get_url_flags_remote(CamelStoreRemote *store);
char * camel_store_get_service_name_remote (CamelStoreRemote *store, gboolean brief);
gint camel_store_get_status_remote (CamelStoreRemote *store);
+
+CamelFolderInfo * camel_store_create_folder_remote (CamelStoreRemote *store, char *parent, char * name, CamelException *ex);
+
+int camel_store_get_state_remote (CamelStoreRemote *store);
+
#endif
Modified: branches/mail-dbus-remoting/mail/mail-ops.c
==============================================================================
--- branches/mail-dbus-remoting/mail/mail-ops.c (original)
+++ branches/mail-dbus-remoting/mail/mail-ops.c Thu Aug 28 18:45:54 2008
@@ -69,6 +69,8 @@
#include "mail-tools.h"
#include "mail-vfolder.h"
+#include <camel-session-remote.h>
+
#define w(x)
#define d(x)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]