aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/mbox/camel-mbox-search.h
diff options
context:
space:
mode:
authorNotZed <notzed@zedzone.helixcode.com>2000-02-14 13:39:02 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-02-14 13:39:02 +0800
commitaeaa2ed70043e607e1da431d8f33726590f4c83b (patch)
tree6b017340f52b51b3eb55c0c847089ec5ca505263 /camel/providers/mbox/camel-mbox-search.h
parentddcfc699c72ee253307f2939492eb469beba3834 (diff)
downloadgsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar
gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.gz
gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.bz2
gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.lz
gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.xz
gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.zst
gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.zip
New file, implements the search api for mbox folders.
2000-02-13 NotZed <notzed@zedzone.helixcode.com> * providers/mbox/camel-mbox-search.c: New file, implements the search api for mbox folders. * providers/mbox/Makefile.am: Link with ibex. * camel-folder.c (camel_folder_has_search_capability): Api additions. (camel_folder_search_by_expression): Ditto. 2000-02-12 NotZed <notzed@zedzone.helixcode.com> * providers/mbox/camel-mbox-folder.c (_set_name): Setup index filename as well. (_init_with_store): Init index filename. Hmm, none of these names ever seem to get free'd (FIXME?) * providers/mbox/camel-mbox-folder.h: Add index file name. 2000-02-12 NotZed <notzed@helixcode.com> * camel-folder.h: Add folder search functions. ** Created ChangeLog just for camel ** - refer to ../ChangeLog for changes prior to this date. svn path=/trunk/; revision=1772
Diffstat (limited to 'camel/providers/mbox/camel-mbox-search.h')
-rw-r--r--camel/providers/mbox/camel-mbox-search.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/camel/providers/mbox/camel-mbox-search.h b/camel/providers/mbox/camel-mbox-search.h
new file mode 100644
index 0000000000..16efd4a023
--- /dev/null
+++ b/camel/providers/mbox/camel-mbox-search.h
@@ -0,0 +1,10 @@
+
+#ifndef _CAMEL_MBOX_SEARCH_H
+#define _CAMEL_MBOX_SEARCH_H
+
+#include "camel-mbox-folder.h"
+
+GList *camel_mbox_folder_search_by_expression(CamelFolder *folder, const char *expression);
+
+#endif /* ! _CAMEL_MBOX_SEARCH_H */
+