aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/nntp/camel-nntp-newsrc.h
blob: 6a202f8a01c9de2d456ee39941af5c9558ce5004 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

#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, const char *group_name);
void      camel_nntp_newsrc_mark_article_read           (CamelNNTPNewsrc *newsrc,
                             const char *group_name, int num);
void      camel_nntp_newsrc_mark_range_read             (CamelNNTPNewsrc *newsrc,
                             const char *group_name, long low, long high);

gboolean  camel_nntp_newsrc_article_is_read             (CamelNNTPNewsrc *newsrc,
                             const char *group_name, long num);

gboolean   camel_nntp_newsrc_group_is_subscribed        (CamelNNTPNewsrc *newsrc, const char *group_name);
void       camel_nntp_newsrc_subscribe_group            (CamelNNTPNewsrc *newsrc, const char *group_name);
void       camel_nntp_newsrc_unsubscribe_group          (CamelNNTPNewsrc *newsrc, const char *group_name);

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_ */