diff options
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h index 562d888f93f..d6e842cfbbc 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -192,5 +192,12 @@ extern void hold_keyboard_input (void); | |||
| 192 | extern void unhold_keyboard_input (void); | 192 | extern void unhold_keyboard_input (void); |
| 193 | extern int kbd_on_hold_p (void); | 193 | extern int kbd_on_hold_p (void); |
| 194 | 194 | ||
| 195 | typedef void (*fd_callback)(int fd, void *data, int for_read); | ||
| 196 | |||
| 197 | extern void add_read_fd (int fd, fd_callback func, void *data); | ||
| 198 | extern void delete_read_fd (int fd); | ||
| 199 | extern void add_write_fd (int fd, fd_callback func, void *data); | ||
| 200 | extern void delete_write_fd (int fd); | ||
| 201 | |||
| 195 | /* arch-tag: dffedfc4-d7bc-4b58-a26f-c16155449c72 | 202 | /* arch-tag: dffedfc4-d7bc-4b58-a26f-c16155449c72 |
| 196 | (do not change this comment) */ | 203 | (do not change this comment) */ |