aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/ipod-sync/evolution-ipod-sync.h
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2005-10-18 17:25:51 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2005-10-18 17:25:51 +0800
commitecc167430b4a2fd2f9418ef753da62a9f1aab891 (patch)
tree4c1ae48a666d6fb290ae7da39f89a0a6e06e3018 /plugins/ipod-sync/evolution-ipod-sync.h
parent82af9cb973cc15c93afb2f0dfd2598de009a158b (diff)
downloadgsoc2013-evolution-ecc167430b4a2fd2f9418ef753da62a9f1aab891.tar
gsoc2013-evolution-ecc167430b4a2fd2f9418ef753da62a9f1aab891.tar.gz
gsoc2013-evolution-ecc167430b4a2fd2f9418ef753da62a9f1aab891.tar.bz2
gsoc2013-evolution-ecc167430b4a2fd2f9418ef753da62a9f1aab891.tar.lz
gsoc2013-evolution-ecc167430b4a2fd2f9418ef753da62a9f1aab891.tar.xz
gsoc2013-evolution-ecc167430b4a2fd2f9418ef753da62a9f1aab891.tar.zst
gsoc2013-evolution-ecc167430b4a2fd2f9418ef753da62a9f1aab891.zip
Added iPod sync e-plugin to experimental plugins. Added plugins/ipod-sync
2005-10-18 Srinivasa Ragavan <sragavan@novell.com> * configure.in: Added iPod sync e-plugin to experimental plugins. Added plugins/ipod-sync svn path=/trunk/; revision=30523
Diffstat (limited to 'plugins/ipod-sync/evolution-ipod-sync.h')
-rw-r--r--plugins/ipod-sync/evolution-ipod-sync.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/ipod-sync/evolution-ipod-sync.h b/plugins/ipod-sync/evolution-ipod-sync.h
new file mode 100644
index 0000000000..89110ed7f7
--- /dev/null
+++ b/plugins/ipod-sync/evolution-ipod-sync.h
@@ -0,0 +1,43 @@
+/*
+ * evolution-ipod-sync.h
+ *
+ * (C)2004 Justin Wake <jwake@iinet.net.au>
+ *
+ * Licensed under the GNU GPL v2. See COPYING.
+ *
+ */
+
+#include "config.h"
+#include <dbus/dbus.h>
+#include <dbus/dbus-glib.h>
+#include <libhal.h>
+#include <signal.h>
+
+#ifdef ENABLE_NLS
+# include <libintl.h>
+# define _(String) gettext (String)
+# ifdef gettext_noop
+# define N_(String) gettext_noop (String)
+# else
+# define N_(String) (String)
+# endif
+#else
+# define _(String)
+# define N_(String) (String)
+#endif
+
+#ifdef EIS_DEBUG
+# define dbg(fmt,arg...) fprintf(stderr, "%s/%d: " fmt,__FILE__,__LINE__,##arg)
+#else
+# define dbg(fmt,arg...) do { } while(0)
+#endif
+
+#define warn(fmt,arg...) g_warning("%s/%d: " fmt,__FILE__,__LINE__,##arg)
+
+
+gboolean check_hal ();
+
+char *find_ipod_mount_point (LibHalContext *ctx);
+gboolean ipod_check_status (gboolean silent);
+char *ipod_get_mount ();
+