X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=h%2Fprototypes.h;h=26981f89fe839cd9e50525d74f7f5f4b87851158;hp=9b76d07a5c508267be5475e2a68b7b4172b0f495;hb=0347722f5b69de06a867b73ddc23388d082ab219;hpb=5b093c3d779ddbbd09a233c8cf7a20c0d0d15d1c diff --git a/h/prototypes.h b/h/prototypes.h index 9b76d07..26981f8 100644 --- a/h/prototypes.h +++ b/h/prototypes.h @@ -126,3 +126,35 @@ int what_now(char *, int, char *, char *, int, struct msgs *, char *LocalName(void); /* hostname */ char *getusername(void); char *getfullname(void); + + +/* +** prototypes for message and sequence manipulation +*/ +void clear_msg_flags(struct msgs *, int); +void copy_msg_flags(struct msgs *, int, int); +void get_msg_flags(struct msgs *, seqset_t *, int); +void set_msg_flags(struct msgs *, seqset_t *, int); +seqset_t does_exist(struct msgs *, int); +void unset_exists(struct msgs *, int); +void set_exists(struct msgs *, int); +seqset_t is_selected(struct msgs *, int); +void unset_selected(struct msgs *, int); +void set_selected(struct msgs *, int); +seqset_t is_unseen(struct msgs *, int); +void unset_unseen(struct msgs *, int); +void set_unseen(struct msgs *, int); +seqset_t in_sequence(struct msgs *, int, int); +void clear_sequence(struct msgs *, int, int); +void add_sequence(struct msgs *, int, int); + +int is_seq_private(struct msgs *, int); +void make_seq_public(struct msgs *, int); +void make_seq_private(struct msgs *, int); +void make_all_public(struct msgs *); + +void clear_folder_flags(struct msgs *); +int is_readonly(struct msgs *); +void set_readonly(struct msgs *); +int other_files(struct msgs *); +void set_other_files(struct msgs *);