diff options
author | nobody <nobody@localhost> | 2003-04-02 01:15:53 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2003-04-02 01:15:53 +0800 |
commit | 2e5b2bbb530b642dda56b332cfd93810ac415098 (patch) | |
tree | e2b63c11a404a5dd99d407c989c8846fd0d5379d /calendar/gui/itip-utils.h | |
parent | 5cda225087bfdc66e19edb703689e8af655e171c (diff) | |
download | gsoc2013-evolution-EVOLUTION_1_2_4.tar gsoc2013-evolution-EVOLUTION_1_2_4.tar.gz gsoc2013-evolution-EVOLUTION_1_2_4.tar.bz2 gsoc2013-evolution-EVOLUTION_1_2_4.tar.lz gsoc2013-evolution-EVOLUTION_1_2_4.tar.xz gsoc2013-evolution-EVOLUTION_1_2_4.tar.zst gsoc2013-evolution-EVOLUTION_1_2_4.zip |
This commit was manufactured by cvs2svn to create tagEVOLUTION_1_2_4
'EVOLUTION_1_2_4'.
svn path=/tags/EVOLUTION_1_2_4/; revision=20614
Diffstat (limited to 'calendar/gui/itip-utils.h')
-rw-r--r-- | calendar/gui/itip-utils.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/calendar/gui/itip-utils.h b/calendar/gui/itip-utils.h index c73f11673c..e4826d6a56 100644 --- a/calendar/gui/itip-utils.h +++ b/calendar/gui/itip-utils.h @@ -7,7 +7,6 @@ #include <glib.h> #include <cal-client/cal-client.h> #include <cal-util/cal-component.h> -#include <e-util/e-account-list.h> typedef enum { CAL_COMPONENT_METHOD_PUBLISH, @@ -20,8 +19,18 @@ typedef enum { CAL_COMPONENT_METHOD_DECLINECOUNTER } CalComponentItipMethod; -EAccountList *itip_addresses_get (void); -EAccount *itip_addresses_get_default (void); +typedef struct { + gchar *name; + gchar *address; + gchar *full; + + gboolean default_address; +} ItipAddress; + +GList *itip_addresses_get (void); +ItipAddress *itip_addresses_get_default (void); +void itip_address_free (ItipAddress *address); +void itip_addresses_free (GList *addresses); gboolean itip_organizer_is_user (CalComponent *comp, CalClient *client); gboolean itip_sentby_is_user (CalComponent *comp); |