Added new protos
Showing
1 changed file
with
4 additions
and
3 deletions
... | @@ -245,6 +245,7 @@ void mh_global_save_state __P((void)); | ... | @@ -245,6 +245,7 @@ void mh_global_save_state __P((void)); |
245 | int mh_global_profile_iterate __P((mh_context_iterator fp, void *data)); | 245 | int mh_global_profile_iterate __P((mh_context_iterator fp, void *data)); |
246 | int mh_global_context_iterate __P((mh_context_iterator fp, void *data)); | 246 | int mh_global_context_iterate __P((mh_context_iterator fp, void *data)); |
247 | int mh_global_sequences_iterate __P((mh_context_iterator fp, void *data)); | 247 | int mh_global_sequences_iterate __P((mh_context_iterator fp, void *data)); |
248 | void mh_global_sequences_drop __P((void)); | ||
248 | 249 | ||
249 | int mh_interactive_mode_p __P((void)); | 250 | int mh_interactive_mode_p __P((void)); |
250 | int mh_getyn __P((const char *fmt, ...)); | 251 | int mh_getyn __P((const char *fmt, ...)); |
... | @@ -315,9 +316,10 @@ int mh_whom __P((char *filename, int check)); | ... | @@ -315,9 +316,10 @@ int mh_whom __P((char *filename, int check)); |
315 | 316 | ||
316 | int mh_alias_read __P((char *name, int fail)); | 317 | int mh_alias_read __P((char *name, int fail)); |
317 | int mh_alias_get __P((char *name, list_t *return_list)); | 318 | int mh_alias_get __P((char *name, list_t *return_list)); |
318 | int mh_alias_get_address __P((char *name, address_t *addr)); | 319 | int mh_alias_get_address __P((char *name, address_t *addr, int *incl)); |
319 | int mh_alias_get_alias __P((char *uname, list_t *return_list)); | 320 | int mh_alias_get_alias __P((char *uname, list_t *return_list)); |
320 | int mh_read_aliases __P((void)); | 321 | int mh_read_aliases __P((void)); |
322 | int mh_alias_expand __P((char *str, address_t *paddr, int *incl)); | ||
321 | 323 | ||
322 | typedef int (*mh_alias_enumerator_t) __PMT((char *alias, list_t names, | 324 | typedef int (*mh_alias_enumerator_t) __PMT((char *alias, list_t names, |
323 | void *data)); | 325 | void *data)); |
... | @@ -340,9 +342,8 @@ void mh_seq_add __P((char *name, mh_msgset_t *mset, int flags)); | ... | @@ -340,9 +342,8 @@ void mh_seq_add __P((char *name, mh_msgset_t *mset, int flags)); |
340 | int mh_seq_delete __P((char *name, mh_msgset_t *mset, int flags)); | 342 | int mh_seq_delete __P((char *name, mh_msgset_t *mset, int flags)); |
341 | char *mh_seq_read __P((char *name, int flags)); | 343 | char *mh_seq_read __P((char *name, int flags)); |
342 | 344 | ||
343 | int mhdraft_stream_create __P((stream_t *stream, stream_t src, int flags)); | ||
344 | |||
345 | void mh_comp_draft __P((char *formfile, char *defformfile, char *draftfile)); | 345 | void mh_comp_draft __P((char *formfile, char *defformfile, char *draftfile)); |
346 | int check_draft_disposition __P((struct mh_whatnow_env *wh, int use_draft)); | 346 | int check_draft_disposition __P((struct mh_whatnow_env *wh, int use_draft)); |
347 | 347 | ||
348 | void ali_parse_error __P((char *fmt, ...)); | ||
348 | 349 | ... | ... |
-
Please register or sign in to post a comment