aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/tools/evolution-addressbook-export.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-12-08 13:17:41 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-06-03 11:00:39 +0800
commit2b346d96f86c96c73ac0671e4c5111012f39372d (patch)
treef88b0cb2e5ad09484bfa3f59632bcf3057d7d0b4 /addressbook/tools/evolution-addressbook-export.h
parent571e5e17f8b3dae8ecd81cd1f437ebb128159575 (diff)
downloadgsoc2013-evolution-2b346d96f86c96c73ac0671e4c5111012f39372d.tar
gsoc2013-evolution-2b346d96f86c96c73ac0671e4c5111012f39372d.tar.gz
gsoc2013-evolution-2b346d96f86c96c73ac0671e4c5111012f39372d.tar.bz2
gsoc2013-evolution-2b346d96f86c96c73ac0671e4c5111012f39372d.tar.lz
gsoc2013-evolution-2b346d96f86c96c73ac0671e4c5111012f39372d.tar.xz
gsoc2013-evolution-2b346d96f86c96c73ac0671e4c5111012f39372d.tar.zst
gsoc2013-evolution-2b346d96f86c96c73ac0671e4c5111012f39372d.zip
Adapt addressbook/tools to the new ESource API.
Diffstat (limited to 'addressbook/tools/evolution-addressbook-export.h')
-rw-r--r--addressbook/tools/evolution-addressbook-export.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/addressbook/tools/evolution-addressbook-export.h b/addressbook/tools/evolution-addressbook-export.h
index 804bd50780..ec8df060fc 100644
--- a/addressbook/tools/evolution-addressbook-export.h
+++ b/addressbook/tools/evolution-addressbook-export.h
@@ -24,7 +24,7 @@
#ifndef _EVOLUTION_ADDRESSBOOK_EXPORT_H_
#define _EVOLUTION_ADDRESSBOOK_EXPORT_H__
-#include <glib.h>
+#include <libedataserver/e-source-registry.h>
G_BEGIN_DECLS
@@ -55,7 +55,7 @@ union _ActionContext
gchar *output_file;
gint IsCSV;
gint IsVCard;
- gchar *addressbook_folder_uri;
+ gchar *addressbook_source_uid;
gint async_mode;
gint file_size;
}
@@ -65,10 +65,12 @@ union _ActionContext
typedef union _ActionContext ActionContext;
/* action_list_folders */
-guint action_list_folders_init (ActionContext * p_actctx);
+guint action_list_folders_init (ESourceRegistry *registry,
+ ActionContext *p_actctx);
/*action list cards*/
-guint action_list_cards_init (ActionContext * p_actctx);
+guint action_list_cards_init (ESourceRegistry *registry,
+ ActionContext *p_actctx);
G_END_DECLS