diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-03-26 06:33:30 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-03-26 06:33:30 +0800 |
commit | d78bd3829c186685849a336f0fc756bef554aec5 (patch) | |
tree | 96a218f796e0bf8cd7fd343db61a3eb39a0441a0 /ebook/e-book.h | |
parent | faf22c27abd0e300392f39a3f58738bc753058cf (diff) | |
download | gsoc2013-evolution-d78bd3829c186685849a336f0fc756bef554aec5.tar gsoc2013-evolution-d78bd3829c186685849a336f0fc756bef554aec5.tar.gz gsoc2013-evolution-d78bd3829c186685849a336f0fc756bef554aec5.tar.bz2 gsoc2013-evolution-d78bd3829c186685849a336f0fc756bef554aec5.tar.lz gsoc2013-evolution-d78bd3829c186685849a336f0fc756bef554aec5.tar.xz gsoc2013-evolution-d78bd3829c186685849a336f0fc756bef554aec5.tar.zst gsoc2013-evolution-d78bd3829c186685849a336f0fc756bef554aec5.zip |
+ * shell/e-shell-view.c (get_view): Move CORBA_Environment to
+ different scope.
+
+ * ebook/e-book.c,
+ ebook/e-book.h,
+ ebook/e-book.h,
+ ebook/e-card-fields.h,
+ ebook/e-card.h,
+ ebook/e-commerce.h: old, removed. Up-to-date EBook stuff is kept
+ in addressbook/backend/ebook.
svn path=/trunk/; revision=2162
Diffstat (limited to 'ebook/e-book.h')
-rw-r--r-- | ebook/e-book.h | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/ebook/e-book.h b/ebook/e-book.h deleted file mode 100644 index 0aab676e65..0000000000 --- a/ebook/e-book.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * The Evolution addressbook client object. - * - * Author: - * Nat Friedman (nat@helixcode.com) - * - * Copyright 1999, Helix Code, Inc. - */ - -#ifndef __E_BOOK_H__ -#define __E_BOOK_H__ - -typedef struct { - GtkObject parent; - EBookPrivate *priv; -} EBook; - -typedef struct { - GtkObjectClass parent; - - /* - * Signals. - */ - void (card_changed *) (const char *id); - void (card_removed *) (const char *id); - void (card_added *) (const char *id); -} EBookClass; - -/* Creating a new addressbook. */ -EBook *e_book_new (const char *uri); -GtkType e_book_get_type (void); - -/* Fetching cards and card IDs out of the addressbook. */ -ECard *e_book_get_card (EBook *book, - const char *id); -GList *e_book_get_cards (EBook *book); -GList *e_book_get_ids (EBook *book); - -/* Getting/putting card changes. */ -void e_book_sync_card (EBook *book, - ECard *card); -void e_book_update_card (EBook *book, - ECard *card); - -/* Adding and deleting cards. */ -const char *e_book_add_card (EBook *book, - ECard *card); -void e_book_remove_card (EBook *book, - const char *id); - -/* Typing completion... */ -GList *e_book_complete (EBook *book, - const char *str); - -/* Information about this addresbook. */ -char *e_book_get_name (EBook *book); -void e_book_set_name (EBook *book, - const char *name); - -#endif /* ! __E_BOOK_H__ */ |