diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-05 04:58:46 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-05 04:58:46 +0800 |
commit | d8db781adee587ed1fc5b948a68d1d0a7c2952c2 (patch) | |
tree | e2003adb7f8e6dbf4ec917adf95c7f594113ce39 /addressbook/backend/ebook/e-card.h | |
parent | 2d75a701029288c953a84ba0a696675f5a7eb77f (diff) | |
download | gsoc2013-evolution-d8db781adee587ed1fc5b948a68d1d0a7c2952c2.tar gsoc2013-evolution-d8db781adee587ed1fc5b948a68d1d0a7c2952c2.tar.gz gsoc2013-evolution-d8db781adee587ed1fc5b948a68d1d0a7c2952c2.tar.bz2 gsoc2013-evolution-d8db781adee587ed1fc5b948a68d1d0a7c2952c2.tar.lz gsoc2013-evolution-d8db781adee587ed1fc5b948a68d1d0a7c2952c2.tar.xz gsoc2013-evolution-d8db781adee587ed1fc5b948a68d1d0a7c2952c2.tar.zst gsoc2013-evolution-d8db781adee587ed1fc5b948a68d1d0a7c2952c2.zip |
Changed this to backend to an ebook.
2000-04-04 Christopher James Lahey <clahey@helixcode.com>
* addressbook/demo/e-test-model.c,
addressbook/demo/e-test-model.h, addressbook/demo/Makefile.am:
Changed this to backend to an ebook.
* addressbook/backend/ebook/e-card-iterator.c,
addressbook/backend/ebook/e-card-iterator.h,
addressbook/backend/ebook/e-card-list-iterator.c,
addressbook/backend/ebook/e-card-list.c,
addressbook/backend/ebook/e-card-list.h,
addressbook/backend/ebook/e-card.c,
addressbook/backend/ebook/e-card.h: Fixed const correctness and
changed a couple of functions to be external.
* addressbook/Makefile.am: Fixed subdir ordering.
svn path=/trunk/; revision=2287
Diffstat (limited to 'addressbook/backend/ebook/e-card.h')
-rw-r--r-- | addressbook/backend/ebook/e-card.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/addressbook/backend/ebook/e-card.h b/addressbook/backend/ebook/e-card.h index 3d2af18c55..a8e1324b20 100644 --- a/addressbook/backend/ebook/e-card.h +++ b/addressbook/backend/ebook/e-card.h @@ -90,6 +90,12 @@ char *e_card_get_id (ECard *card); void e_card_set_id (ECard *card, const gchar *character); char *e_card_get_vcard (ECard *card); +void e_card_phone_free (ECardPhone *phone); +ECardPhone *e_card_phone_copy (const ECardPhone *phone); +void e_card_delivery_address_free (ECardDeliveryAddress *addr); +ECardDeliveryAddress *e_card_delivery_address_copy (const ECardDeliveryAddress *addr); + + /* Standard Gtk function */ GtkType e_card_get_type (void); |