diff options
Diffstat (limited to 'camel/providers/mbox/camel-mbox-search.h')
-rw-r--r-- | camel/providers/mbox/camel-mbox-search.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/camel/providers/mbox/camel-mbox-search.h b/camel/providers/mbox/camel-mbox-search.h index d232624386..d3fe328a2c 100644 --- a/camel/providers/mbox/camel-mbox-search.h +++ b/camel/providers/mbox/camel-mbox-search.h @@ -2,9 +2,13 @@ #ifndef _CAMEL_MBOX_SEARCH_H #define _CAMEL_MBOX_SEARCH_H +#include <glib.h> #include "camel-mbox-folder.h" -GList *camel_mbox_folder_search_by_expression(CamelFolder *folder, const char *expression, CamelException *ex); +int camel_mbox_folder_search_by_expression(CamelFolder *folder, const char *expression, + CamelSearchFunc *func, void *data, CamelException *ex); +gboolean camel_mbox_folder_search_complete(CamelFolder *folder, int searchid, gboolean wait, CamelException *ex); +void camel_mbox_folder_search_cancel(CamelFolder *folder, int searchid, CamelException *ex); #endif /* ! _CAMEL_MBOX_SEARCH_H */ |