aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-conduit.h
diff options
context:
space:
mode:
authorEskil Heyn Olsen <eskil@src.gnome.org>1999-09-19 09:14:24 +0800
committerEskil Heyn Olsen <eskil@src.gnome.org>1999-09-19 09:14:24 +0800
commitf75cc7238b336522d966538e58f79bb11b996cbc (patch)
treecbb522e5f853b3ca6ebc52ee9887d47e6c850e61 /calendar/gui/calendar-conduit.h
parentb2c5bf685a08cd401de24ad9ec7698804fce51ec (diff)
downloadgsoc2013-evolution-f75cc7238b336522d966538e58f79bb11b996cbc.tar
gsoc2013-evolution-f75cc7238b336522d966538e58f79bb11b996cbc.tar.gz
gsoc2013-evolution-f75cc7238b336522d966538e58f79bb11b996cbc.tar.bz2
gsoc2013-evolution-f75cc7238b336522d966538e58f79bb11b996cbc.tar.lz
gsoc2013-evolution-f75cc7238b336522d966538e58f79bb11b996cbc.tar.xz
gsoc2013-evolution-f75cc7238b336522d966538e58f79bb11b996cbc.tar.zst
gsoc2013-evolution-f75cc7238b336522d966538e58f79bb11b996cbc.zip
changed to be a .la file instead of .a, this allows lib*_conduit to use
* libversit: changed to be a .la file instead of .a, this allows lib*_conduit to use the library. * gncal/calendar-conduit: implemented iterate and iterate_specific. * gncal/corba-cal: fixed warnings. svn path=/trunk/; revision=1239
Diffstat (limited to 'calendar/gui/calendar-conduit.h')
-rw-r--r--calendar/gui/calendar-conduit.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/calendar/gui/calendar-conduit.h b/calendar/gui/calendar-conduit.h
index 5b7be2367d..2f5cc0c7da 100644
--- a/calendar/gui/calendar-conduit.h
+++ b/calendar/gui/calendar-conduit.h
@@ -9,6 +9,19 @@
#include <pi-datebook.h>
#include <gnome.h>
+#define CALLOCALRECORD(s) ((CalLocalRecord*)(s))
+typedef struct _CalLocalRecord CalLocalRecord;
+
+struct _CalLocalRecord {
+ /* The stuff from gnome-pilot-conduit-standard-abs.h */
+ LocalRecord local;
+ /* The Pilot ID of the record */
+ recordid_t ID;
+ /* The corresponding iCal object */
+ iCalObject *ical;
+ /* used by iterations, points to a GList element */
+ GList *list_ptr;
+};
typedef struct _ConduitCfg ConduitCfg;