diff options
Diffstat (limited to 'calendar/calendar-conduit.h')
-rw-r--r-- | calendar/calendar-conduit.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/calendar/calendar-conduit.h b/calendar/calendar-conduit.h index 5b7be2367d..2f5cc0c7da 100644 --- a/calendar/calendar-conduit.h +++ b/calendar/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; |