aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-import-dialog.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-10-17 20:48:34 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-10-17 20:48:34 +0800
commitdb8277c743a6ea69a64d2441e925aeddab08834d (patch)
tree885f9c4228532d3d190cf468f9817d1cf76499eb /src/empathy-import-dialog.h
parent0960240a229b324dd874f60a2f385daebb1627ad (diff)
downloadgsoc2013-empathy-db8277c743a6ea69a64d2441e925aeddab08834d.tar
gsoc2013-empathy-db8277c743a6ea69a64d2441e925aeddab08834d.tar.gz
gsoc2013-empathy-db8277c743a6ea69a64d2441e925aeddab08834d.tar.bz2
gsoc2013-empathy-db8277c743a6ea69a64d2441e925aeddab08834d.tar.lz
gsoc2013-empathy-db8277c743a6ea69a64d2441e925aeddab08834d.tar.xz
gsoc2013-empathy-db8277c743a6ea69a64d2441e925aeddab08834d.tar.zst
gsoc2013-empathy-db8277c743a6ea69a64d2441e925aeddab08834d.zip
Split pidgin import code into its own module. It makes easier to add other import modules for other programs.
svn path=/trunk/; revision=1644
Diffstat (limited to 'src/empathy-import-dialog.h')
-rw-r--r--src/empathy-import-dialog.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/empathy-import-dialog.h b/src/empathy-import-dialog.h
index 55ad8fb6e..68fd6e17a 100644
--- a/src/empathy-import-dialog.h
+++ b/src/empathy-import-dialog.h
@@ -26,6 +26,16 @@
G_BEGIN_DECLS
+typedef struct
+{
+ /* Table mapping CM param string to a GValue */
+ GHashTable *settings;
+ /* The profile to use for this account */
+ McProfile *profile;
+} EmpathyImportAccountData;
+
+EmpathyImportAccountData *empathy_import_account_data_new (void);
+void empathy_import_account_data_free (EmpathyImportAccountData *data);
void empathy_import_dialog_show (GtkWindow *parent, gboolean warning);
G_END_DECLS