diff options
author | NotZed <NotZed@HelixCode.com> | 2000-03-24 03:57:31 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-03-24 03:57:31 +0800 |
commit | 6a766351410912acde101b6fa01488338efca5c8 (patch) | |
tree | c07e09a90d70b9438999f698c3d82682fbe7d857 /camel/providers/mbox/camel-mbox-folder.h | |
parent | d2e39f53aef475f9747aae84dcb22baf26c72b78 (diff) | |
download | gsoc2013-evolution-6a766351410912acde101b6fa01488338efca5c8.tar.gz gsoc2013-evolution-6a766351410912acde101b6fa01488338efca5c8.tar.zst gsoc2013-evolution-6a766351410912acde101b6fa01488338efca5c8.zip |
Added async search api.
2000-03-22 NotZed <NotZed@HelixCode.com>
* camel-folder.[ch]: Added async search api.
* providers/mbox/camel-mbox-search.c
(camel_mbox_folder_search_by_expression): Changed to use an
asynchronous interface.
(camel_mbox_folder_search_cancel): Cancel function for async
interface.
svn path=/trunk/; revision=2155
Diffstat (limited to 'camel/providers/mbox/camel-mbox-folder.h')
-rw-r--r-- | camel/providers/mbox/camel-mbox-folder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/providers/mbox/camel-mbox-folder.h b/camel/providers/mbox/camel-mbox-folder.h index 76288d5c3c..4caa28fd6a 100644 --- a/camel/providers/mbox/camel-mbox-folder.h +++ b/camel/providers/mbox/camel-mbox-folder.h @@ -59,6 +59,8 @@ typedef struct { CamelMboxSummary *internal_summary; /* internal summary object */ GList *uid_array; + int search_id; /* next search id */ + GList *searches; /* current searches */ } CamelMboxFolder; |