diff options
Diffstat (limited to 'camel/providers/nntp/camel-nntp-newsrc.h')
-rw-r--r-- | camel/providers/nntp/camel-nntp-newsrc.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/camel/providers/nntp/camel-nntp-newsrc.h b/camel/providers/nntp/camel-nntp-newsrc.h new file mode 100644 index 0000000000..3f4be6de8d --- /dev/null +++ b/camel/providers/nntp/camel-nntp-newsrc.h @@ -0,0 +1,27 @@ + +#ifndef _CAMEL_NNTP_NEWSRC_H_ +#define _CAMEL_NNTP_NEWSRC_H_ + +#include <stdio.h> +#include "glib.h" + +typedef struct CamelNNTPNewsrc CamelNNTPNewsrc; + +int camel_nntp_newsrc_get_highest_article_read (CamelNNTPNewsrc *newsrc, char *group_name); +void camel_nntp_newsrc_mark_article_read (CamelNNTPNewsrc *newsrc, + char *group_name, int num); +void camel_nntp_newsrc_mark_range_read (CamelNNTPNewsrc *newsrc, + char *group_name, long low, long high); + +gboolean camel_nntp_newsrc_article_is_read (CamelNNTPNewsrc *newsrc, + char *group_name, long num); + +GPtrArray *camel_nntp_newsrc_get_subscribed_group_names (CamelNNTPNewsrc *newsrc); +GPtrArray *camel_nntp_newsrc_get_all_group_names (CamelNNTPNewsrc *newsrc); +void camel_nntp_newsrc_free_group_names (CamelNNTPNewsrc *newsrc, GPtrArray *group_names); + +void camel_nntp_newsrc_write_to_file (CamelNNTPNewsrc *newsrc, FILE *fp); +void camel_nntp_newsrc_write (CamelNNTPNewsrc *newsrc); +CamelNNTPNewsrc *camel_nntp_newsrc_read_for_server (const char *server); + +#endif /* _CAMEL_NNTP_NEWSRC_H_ */ |