aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-book-types.h
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-03-11 15:13:43 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-03-11 15:13:43 +0800
commit6e1b023154b916012e1fb5d629b7118081bd457a (patch)
tree3034b2e7cec1eb0654d4073e6580409beb2be231 /addressbook/backend/ebook/e-book-types.h
parent6da96db8dd1fc783a025fb1db9ecf46430f744d6 (diff)
downloadgsoc2013-evolution-6e1b023154b916012e1fb5d629b7118081bd457a.tar
gsoc2013-evolution-6e1b023154b916012e1fb5d629b7118081bd457a.tar.gz
gsoc2013-evolution-6e1b023154b916012e1fb5d629b7118081bd457a.tar.bz2
gsoc2013-evolution-6e1b023154b916012e1fb5d629b7118081bd457a.tar.lz
gsoc2013-evolution-6e1b023154b916012e1fb5d629b7118081bd457a.tar.xz
gsoc2013-evolution-6e1b023154b916012e1fb5d629b7118081bd457a.tar.zst
gsoc2013-evolution-6e1b023154b916012e1fb5d629b7118081bd457a.zip
Added. A simplified, cancellable query mechanism that lets you avoid
2001-03-11 Jon Trowbridge <trow@ximian.com> * backend/ebook/e-book.c (e_book_simple_query): Added. A simplified, cancellable query mechanism that lets you avoid dealing with EBookView. (e_book_simple_query_cancel): Added. Cancels a running query. * backend/ebook/e-book-types.h: Add enum EBookSimpleQueryStatus. svn path=/trunk/; revision=8627
Diffstat (limited to 'addressbook/backend/ebook/e-book-types.h')
-rw-r--r--addressbook/backend/ebook/e-book-types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/addressbook/backend/ebook/e-book-types.h b/addressbook/backend/ebook/e-book-types.h
index a3e8bbc032..2ce1956080 100644
--- a/addressbook/backend/ebook/e-book-types.h
+++ b/addressbook/backend/ebook/e-book-types.h
@@ -26,6 +26,12 @@ typedef enum {
E_BOOK_STATUS_OTHER_ERROR
} EBookStatus;
+typedef enum {
+ E_BOOK_SIMPLE_QUERY_STATUS_SUCCESS,
+ E_BOOK_SIMPLE_QUERY_STATUS_CANCELLED,
+ E_BOOK_SIMPLE_QUERY_STATUS_OTHER_ERROR
+} EBookSimpleQueryStatus;
+
END_GNOME_DECLS
#endif /* ! __E_BOOK_TYPES_H__ */