blob: 9ce3a742412b036390ce64ced9c70e5a4762b7d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __GUI_READLINE_H
#define __GUI_READLINE_H
extern char *cutbuffer;
void input_listen_init(int handle);
void input_listen_deinit(void);
void readline(void);
time_t get_idle_time(void);
void gui_readline_init(void);
void gui_readline_deinit(void);
#endif
|