fix folder update stats (I hope)
[claws.git] / src / filtering.h
index 7cdd5e466c47dcf29bcf1380f2a3ec289b1ff2b5..43fb6c59bfd4c8e3f7307c67f96834c3f7d64c01 100644 (file)
@@ -1,3 +1,22 @@
+/*
+ * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
+ * Copyright (C) 1999-2001 Hiroyuki Yamamoto & The Sylpheed Claws Team
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
 #ifndef FILTER_NEW_H
 
 #define FILTER_NEW_H
@@ -21,23 +40,20 @@ struct _FilteringProp {
 
 typedef struct _FilteringProp FilteringProp;
 
-extern GSList * global_filtering;
+extern GSList * prefs_filtering;
 
 
 FilteringAction * filteringaction_new(int type, int account_id,
                                      gchar * destination);
 void filteringaction_free(FilteringAction * action);
-/*
 FilteringAction * filteringaction_parse(gchar ** str);
-*/
 
 FilteringProp * filteringprop_new(MatcherList * matchers,
                                  FilteringAction * action);
 void filteringprop_free(FilteringProp * prop);
 
-/*
 FilteringProp * filteringprop_parse(gchar ** str);
-*/
+
 
 void filter_msginfo(GSList * filtering_list, MsgInfo * info,
                    GHashTable *folder_table);
@@ -51,6 +67,4 @@ void prefs_filtering_write_config(void);
 void prefs_filtering_read_config(void);
 gchar * filteringprop_to_string(FilteringProp * prop);
 
-void prefs_filtering_clear();
-
 #endif