aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-filter-search.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-09-19 21:26:38 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-09-19 21:26:38 +0800
commit509ffe7ce332614f516a32739b96da048a9e21f7 (patch)
tree57138f347944689367e99183b7aa850ceee2d745 /camel/camel-filter-search.h
parent41693f9a19aca811bf6edab18b967855ec2b129a (diff)
downloadgsoc2013-evolution-509ffe7ce332614f516a32739b96da048a9e21f7.tar
gsoc2013-evolution-509ffe7ce332614f516a32739b96da048a9e21f7.tar.gz
gsoc2013-evolution-509ffe7ce332614f516a32739b96da048a9e21f7.tar.bz2
gsoc2013-evolution-509ffe7ce332614f516a32739b96da048a9e21f7.tar.lz
gsoc2013-evolution-509ffe7ce332614f516a32739b96da048a9e21f7.tar.xz
gsoc2013-evolution-509ffe7ce332614f516a32739b96da048a9e21f7.tar.zst
gsoc2013-evolution-509ffe7ce332614f516a32739b96da048a9e21f7.zip
Take new session arg. Update callers. (symbols[]): changed get-source to
2002-09-19 Not Zed <NotZed@Ximian.com> * camel-filter-search.c (camel_filter_search_match): Take new session arg. Update callers. (symbols[]): changed get-source to header-source (header_source): Chagned from get_source. Now a boolean, returns true if source matches one of the arguments. Uses the provider url comparison directly for accurate checking. Makes 'filter on source' work. * camel-filter-driver.c (camel_filter_driver_new): Take new arg, session. (camel_filter_driver_finalise): Free session. svn path=/trunk/; revision=18112
Diffstat (limited to 'camel/camel-filter-search.h')
-rw-r--r--camel/camel-filter-search.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-filter-search.h b/camel/camel-filter-search.h
index d54c3c03b7..51b988362f 100644
--- a/camel/camel-filter-search.h
+++ b/camel/camel-filter-search.h
@@ -42,7 +42,8 @@ enum {
typedef CamelMimeMessage * (*CamelFilterSearchGetMessageFunc) (void *data, CamelException *ex);
-int camel_filter_search_match (CamelFilterSearchGetMessageFunc get_message, void *data,
+int camel_filter_search_match (CamelSession *session,
+ CamelFilterSearchGetMessageFunc get_message, void *data,
CamelMessageInfo *info, const char *source,
const char *expression, CamelException *ex);