X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=h%2Fprototypes.h;h=1333a84b29a51c293901186a9ff3e8d39ea8a202;hb=0127c00f735b9e38608676b9f7bd3c6e38a7ffb4;hp=9b76d07a5c508267be5475e2a68b7b4172b0f495;hpb=786ff643f5933939b8c5173155aa0ae5a3a00eba;p=mmh diff --git a/h/prototypes.h b/h/prototypes.h index 9b76d07..1333a84 100644 --- a/h/prototypes.h +++ b/h/prototypes.h @@ -40,6 +40,8 @@ void cpydgst(int, int, char *, char *); int decode_rfc2047(char *, char *, size_t); void discard(FILE *); int default_done(int); +int execprog(char *, char **); +int execprogl(char *, char *, ...); char *expandfol(char *); char *expanddir(char *); int ext_hook(char *, char *, char *); @@ -126,3 +128,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 *);