diff options
author | Eskil Heyn Olsen <eskil@src.gnome.org> | 1999-09-21 05:09:00 +0800 |
---|---|---|
committer | Eskil Heyn Olsen <eskil@src.gnome.org> | 1999-09-21 05:09:00 +0800 |
commit | ad24a0d6eb148f9fdf82cc42384b2891ce32a61f (patch) | |
tree | 81751de0614124b23fe2b60ab277e890f17cb49e /calendar/calendar-conduit.h | |
parent | bb18195c269739ad3b48f26945bd46982341b396 (diff) | |
download | gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.gz gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.bz2 gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.lz gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.xz gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.zst gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.zip |
lot of rework, implemented various set_* functions, transmit and
* gncal/calendar-conduit: lot of rework, implemented various set_*
functions, transmit and free_transmit, now appears stable, still
only syncs oneway (pilot -> gnomecal)
svn path=/trunk/; revision=1243
Diffstat (limited to 'calendar/calendar-conduit.h')
-rw-r--r-- | calendar/calendar-conduit.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/calendar/calendar-conduit.h b/calendar/calendar-conduit.h index 2f5cc0c7da..c34457acc5 100644 --- a/calendar/calendar-conduit.h +++ b/calendar/calendar-conduit.h @@ -13,14 +13,14 @@ 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; + /* The stuff from gnome-pilot-conduit-standard-abs.h */ + LocalRecord local; + /* The corresponding iCal object */ + iCalObject *ical; + /* used by iterations, points to a GList element */ + GList *list_ptr; + /* pilot-link appointment structure, used for implementing Transmit */ + struct Appointment *a; }; typedef struct _ConduitCfg ConduitCfg; |