mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
e46446e950
rest of it. It doesn't really work, you can make irssi detached but you can't attach to it anymore :) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2268 dbcabf3a-b0e7-0310-adc4-f8d773084564
16 lines
265 B
C
16 lines
265 B
C
#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
|