(util_get_input, util_get_output)
(util_set_input, util_set_output): New functions. (util_register_event, util_event_remove, util_run_events): New functions.
Showing
1 changed file
with
10 additions
and
0 deletions
... | @@ -269,6 +269,16 @@ int util_uidvalidity __P((mailbox_t smbox, unsigned long *uidvp)); | ... | @@ -269,6 +269,16 @@ int util_uidvalidity __P((mailbox_t smbox, unsigned long *uidvp)); |
269 | 269 | ||
270 | void util_setio __P((FILE*, FILE*)); | 270 | void util_setio __P((FILE*, FILE*)); |
271 | void util_flush_output __P((void)); | 271 | void util_flush_output __P((void)); |
272 | void util_get_input __P((stream_t *pstr)); | ||
273 | void util_get_output __P((stream_t *pstr)); | ||
274 | void util_set_input __P((stream_t str)); | ||
275 | void util_set_output __P((stream_t str)); | ||
276 | |||
277 | void util_register_event __P((int old_state, int new_state, | ||
278 | list_action_t *action, void *data)); | ||
279 | void util_event_remove __P((void *id)); | ||
280 | void util_run_events __P((int old_state, int new_state)); | ||
281 | |||
272 | int util_is_master __P((void)); | 282 | int util_is_master __P((void)); |
273 | void util_bye __P((void)); | 283 | void util_bye __P((void)); |
274 | void util_atexit __P((void (*fp) __PMT((void)))); | 284 | void util_atexit __P((void (*fp) __PMT((void)))); | ... | ... |
-
Please register or sign in to post a comment